]>
Commit | Line | Data |
---|---|---|
6ca40650 | 1 | #ifndef STARTV0_H |
2 | #define STARTV0_H | |
3 | //////////////////////////////////////////////// | |
4 | // Manager and hits classes for set:START // | |
5 | //////////////////////////////////////////////// | |
6 | ||
7 | #include "AliSTART.h" | |
8 | ||
9 | class AliSTARTv0 : public AliSTART { | |
10 | ||
11 | public: | |
12 | AliSTARTv0() {}; | |
13 | AliSTARTv0(const char *name, const char *title); | |
14 | virtual ~AliSTARTv0() {} | |
15 | virtual void CreateGeometry(); | |
16 | virtual void CreateMaterials(); | |
77ee006c | 17 | virtual void DrawModule(); |
6ca40650 | 18 | virtual void Init(); |
19 | virtual Int_t IsVersion() const {return 0;} | |
20 | virtual void StepManager(); | |
21 | ||
22 | protected: | |
23 | Int_t fIdSens1; // Sensetive volume in START | |
24 | ||
25 | ClassDef(AliSTARTv0,1) //Class for START version 0 | |
26 | }; | |
27 | ||
28 | #endif | |
29 | ||
30 |