[MOAB-dev] r3290 - MOAB/trunk

kraftche at cae.wisc.edu kraftche at cae.wisc.edu
Thu Nov 5 17:45:32 CST 2009


Author: kraftche
Date: 2009-11-05 17:45:32 -0600 (Thu, 05 Nov 2009)
New Revision: 3290

Modified:
   MOAB/trunk/TagInfo.hpp
   MOAB/trunk/TagServer.hpp
Log:
comment some code a little better

Modified: MOAB/trunk/TagInfo.hpp
===================================================================
--- MOAB/trunk/TagInfo.hpp	2009-11-05 23:44:53 UTC (rev 3289)
+++ MOAB/trunk/TagInfo.hpp	2009-11-05 23:45:32 UTC (rev 3290)
@@ -39,7 +39,7 @@
   //! set the name of the tag
   void set_name( const std::string& name) { mTagName = name; }
 
-  //! set the size of the data
+  //! set the size of the data, might be MB_VARIABLE_LENGTH 
   void set_size( const int size ) { mDataSize = size; }
 
   //! get the name of the tag

Modified: MOAB/trunk/TagServer.hpp
===================================================================
--- MOAB/trunk/TagServer.hpp	2009-11-05 23:44:53 UTC (rev 3289)
+++ MOAB/trunk/TagServer.hpp	2009-11-05 23:45:32 UTC (rev 3290)
@@ -244,7 +244,9 @@
   MBErrorCode get_entities( const MBTag tag_handle, 
                              MBRange &entities);
 
-  //! gets all entity handles that match a type and tag
+  //! For the set of entities in the input range, return those
+  //! that match the specified type and have a value for the 
+  //! specified tag.
   MBErrorCode get_entities( const MBRange &input_range,
                              const MBTag tag_handle, 
                              const MBEntityType type,
@@ -257,7 +259,8 @@
                                             MBRange &entities,
                                             int value_size = 0 );
   
-  //! gets all entity handles that match a type, tag and tag value 
+  //! For the set of entities in the input range, return those
+  //! that match the specified type and have the specified tag value.
   MBErrorCode get_entities_with_tag_value( const MBRange &input_range,
                                             const MBEntityType type,
                                             const MBTag tag_handle,



More information about the moab-dev mailing list