56d6a1ef |
1 | #ifndef ALIITSV3_H |
2 | #define ALIITSV3_H |
3da30618 |
3 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
4 | * See cxx source for full Copyright notice */ |
5 | |
6 | /* $Id$ */ |
7 | |
fe4da5cc |
8 | ///////////////////////////////////////////////////////// |
9 | // Manager and hits classes for set: ITS version 3 // |
10 | ///////////////////////////////////////////////////////// |
11 | |
12 | #include "AliITS.h" |
56d6a1ef |
13 | #include "AliITSgeom.h" |
fe4da5cc |
14 | |
15 | class AliITSv3 : public AliITS { |
16 | |
593d2ea1 |
17 | private: |
18 | Int_t fId3N; // The number of layers for geometry version 5 |
19 | // The name of the layers as defined in the Geant tree. |
20 | char **fId3Name; |
21 | |
fe4da5cc |
22 | protected: |
58005f18 |
23 | Int_t fMinorVersionV3; //Minor version identifier |
fe4da5cc |
24 | |
25 | public: |
26 | AliITSv3(); |
27 | AliITSv3(const char *name, const char *title); |
1c1b73f8 |
28 | virtual ~AliITSv3() ; |
fe4da5cc |
29 | virtual void CreateGeometry(); |
30 | virtual void CreateMaterials(); |
31 | virtual void Init(); |
32 | virtual Int_t IsVersion() const {return 3;} |
593d2ea1 |
33 | virtual void SetMinorVersion(Int_t version) {fMinorVersionV3=version;} |
fe4da5cc |
34 | virtual void StepManager(); |
35 | |
56d6a1ef |
36 | ClassDef(AliITSv3,1) //Hits manager for set:ITS version 3, TP detailed geometry |
fe4da5cc |
37 | }; |
38 | |
39 | #endif |
56d6a1ef |
40 | |