| 1 | #ifndef TRDv0_H |
| 2 | #define TRDv0_H |
| 3 | //////////////////////////////////////////////////////// |
| 4 | // Manager and hits classes for set:TRD version 0 // |
| 5 | //////////////////////////////////////////////////////// |
| 6 | |
| 7 | #include "AliTRD.h" |
| 8 | |
| 9 | class AliTRDv0 : public AliTRD { |
| 10 | |
| 11 | public: |
| 12 | AliTRDv0() {} |
| 13 | AliTRDv0(const char *name, const char *title); |
| 14 | virtual ~AliTRDv0() {} |
| 15 | virtual void CreateGeometry(); |
| 16 | virtual void CreateMaterials(); |
| 17 | virtual Int_t IsVersion() const {return 0;} |
| 18 | virtual void StepManager(); |
| 19 | virtual void Init(); |
| 20 | virtual void DrawModule(); |
| 21 | |
| 22 | protected: |
| 23 | Int_t fIdSens1; // 1st sensitive volume identifier |
| 24 | Int_t fIdSens2; // 2nd sensitive volume identifier |
| 25 | |
| 26 | ClassDef(AliTRDv0,1) // Transition Radiation Detector version 0 |
| 27 | }; |
| 28 | |
| 29 | #endif |