| 1 | #ifndef TRDv1_H |
| 2 | #define TRDv1_H |
| 3 | //////////////////////////////////////////////////////// |
| 4 | // Manager and hits classes for set:TRD version 1 // |
| 5 | //////////////////////////////////////////////////////// |
| 6 | |
| 7 | #include "AliTRD.h" |
| 8 | |
| 9 | class AliTRDv1 : public AliTRD { |
| 10 | |
| 11 | public: |
| 12 | AliTRDv1() {} |
| 13 | AliTRDv1(const char *name, const char *title); |
| 14 | virtual ~AliTRDv1() {} |
| 15 | virtual void CreateGeometry(); |
| 16 | virtual void CreateMaterials(); |
| 17 | virtual Int_t IsVersion() const {return 1;} |
| 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 | Int_t fIdSens3; // 3rd sensitive volume identifier |
| 26 | |
| 27 | ClassDef(AliTRDv1,1) // Transition Radiation Detector version 1 |
| 28 | }; |
| 29 | |
| 30 | #endif |