// TileID.h // Jan 1999 Daniel Flath - ROOT HTML Documentation added // Dec 1999 Daniel Flath - Rewrite for GLAST // Version 1.1 25 Oct 1999 R.Dubois Clone from LCD towerID #ifndef TILEID_H #define TILEID_H #include "TMath.h" #include "TObject.h" class TileID : public TObject { private: UInt_t m_tag; // ACD Tile ID number public: TileID(); TileID(UInt_t tag); ~TileID() {}; UInt_t tag() const; void setTag(UInt_t tagVal); ClassDef(TileID,1) // ACD Tile identification information }; #endif