Parent Directory
|
Revision Log
More basic files added
| 1 | nikolas | 1.1 | #ifndef PGEOID_H |
| 2 | #define PGEOID_H | ||
| 3 | |||
| 4 | #include "TObject.h" | ||
| 5 | |||
| 6 | struct pGeoID : public TObject { | ||
| 7 | Int_t fvoffset; | ||
| 8 | |||
| 9 | pGeoID():fvoffset(0) {}; | ||
| 10 | pGeoID(Int_t offset): fvoffset(offset){}; | ||
| 11 | |||
| 12 | virtual Int_t GetID() const = 0; | ||
| 13 | virtual Bool_t FillVolID() = 0 ; | ||
| 14 | }; | ||
| 15 | |||
| 16 | #endif //PGEOID |
| ViewVC Help | |
| Powered by ViewVC 1.1.23 |