#ifndef SiHitLookup_hh_ #define SiHitLookup_hh_ // // Fast lookup table to link SiHitSet to some other structure. In our case, // we use it to link SiHitSet to TSvxDataBlock, but don't want it to linked // into our nice Stntuple, so we keep it separated from the libStntuple_obj.so here. // // Aaron Dominguez (LBL) 5 Nov 2002 // #include "TObject.h" #include #include "STLExtensions/VectIndexedMap.hh" #include "SiliconGeometry/SiDigiCode.hh" class SiHitLookup : public TObject { public: SiHitLookup(); ~SiHitLookup(); // Give public access to map VectIndexedMap > map; }; #endif