Changeset 3290

Show
Ignore:
Timestamp:
11/05/09 17:45:32 (3 weeks ago)
Author:
kraftche
Message:

comment some code a little better

Location:
MOAB/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • MOAB/trunk/TagInfo.hpp

    r1586 r3290  
    4040  void set_name( const std::string& name) { mTagName = name; } 
    4141 
    42   //! set the size of the data 
     42  //! set the size of the data, might be MB_VARIABLE_LENGTH  
    4343  void set_size( const int size ) { mDataSize = size; } 
    4444 
  • MOAB/trunk/TagServer.hpp

    r3081 r3290  
    245245                             MBRange &entities); 
    246246 
    247   //! gets all entity handles that match a type and tag 
     247  //! For the set of entities in the input range, return those 
     248  //! that match the specified type and have a value for the  
     249  //! specified tag. 
    248250  MBErrorCode get_entities( const MBRange &input_range, 
    249251                             const MBTag tag_handle,  
     
    258260                                            int value_size = 0 ); 
    259261   
    260   //! gets all entity handles that match a type, tag and tag value  
     262  //! For the set of entities in the input range, return those 
     263  //! that match the specified type and have the specified tag value. 
    261264  MBErrorCode get_entities_with_tag_value( const MBRange &input_range, 
    262265                                            const MBEntityType type,