TTableMap
class description - source file - inheritance tree
    public:
             TTableMap TTableMap(const TTable* table = 0)
             TTableMap TTableMap(const TTableMap& map)
          virtual void ~TTableMap()
      TTable::iterator Begin()
      TTable::iterator Begin() const
        static TClass* Class()
      TTable::iterator End()
      TTable::iterator End() const
       virtual TClass* IsA() const
        virtual Bool_t IsFolder() const
                Bool_t IsValid() const
                  void Push_back(Long_t next)
          virtual void ShowMembers(TMemberInspector& insp, char* parent)
          virtual void Streamer(TBuffer& b)
                  void StreamerNVirtual(TBuffer& b)
               TTable* Table()
    protected:
      TTable* fTable  pointer to the refered TTable
 TTableMap class is helper class to keep the list of the referencs to the
 TTable rows and iterate over it.
 TTableMap is a persistent class.
 The pointer to the TTableMap object may be used as an element
 of the TTable row and saved with the table all together.
 For example, the track table may contain a member to the "map" of the hits
  struct {
    float helix;
    TTableMap *hits;
  } tracks_t;
   // Create track table:
   LArTrackTable *tracks = new LArTrackTable(...);
   // Get pointer to the hit table
   LArHitTable *hits = GiveMeHits();
   // Loop over all tracks
   LArTrackTable::iterator track = tracks->begin();
   LArTrackTable::iterator last = tracks->end();
   for (;track != last;track++) {
     // Find all hits of this track
      LArHitTable::iterator hit     = hits->begin();
      LArHitTable::iterator lastHit = hits->end();
      Long_t hitIndx = 0;
      // Create an empty list of this track hits
      (*track).hits = new TTableMap(hits);
      for(;hit != lastHit;hit++,hitIndx) {
        if (IsMyHit(*hit)) {  // add this hit index to the current track
           (*track).hits->push_back(hitIndx);
        }
      }
   }
___________________________________________________________________
 TTableMap(const TTable *table) : fTable((TTable *)table)
void Streamer(TBuffer &R__b)
 UInt_t R__s, R__c;
Inline Functions
               TTableMap TTableMap(const TTableMap& map)
                  Bool_t IsValid() const
                  Bool_t IsFolder() const
                    void Push_back(Long_t next)
                 TTable* Table()
        TTable::iterator Begin()
        TTable::iterator Begin() const
        TTable::iterator End()
        TTable::iterator End() const
                 TClass* Class()
                 TClass* IsA() const
                    void ShowMembers(TMemberInspector& insp, char* parent)
                    void StreamerNVirtual(TBuffer& b)
                    void ~TTableMap()
Last update: Mon Feb 17 15:30:48 2003
ROOT page - Class index - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.