]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSgeomSPD.h
New version of ITS for the TDR
[u/mrichter/AliRoot.git] / ITS / AliITSgeomSPD.h
1 #ifndef ITSgeomSPD_H
2 #define ITSgeomSPD_H
3
4 #include "TShape.h"
5 #include "TBRIK.h"
6
7 class AliITSgeomSPD: public TObject {
8  private:
9     // define shape of active area using ROOT shapes so that they can
10     // be easly plotted. Inputs to TBRIK are
11     // Shape name (what ever that is)
12     // Shape title (what ever that means)
13     // name of material (something I took from ITSgeometry.tme file
14     // dx => 1/2 thickness of wafer's active volume (cm)
15     // dy => 1/2 r*phi size of active volume (cm)
16     // dz => 1/2 size of active volume (cm)
17     TBRIK *fShapeSPD;
18     // Other infomation like.
19     // Float_t fPitchZ;     // cm
20     // Float_t fPitchY;     // cm
21     // Float_t fCellZ;      // cm
22     // Float_t fCellY;      // cm
23     // or what other or different information that is needed.
24  public:
25     AliITSgeomSPD();
26     virtual ~AliITSgeomSPD(){};
27     inline TBRIK *GetShape(){return fShapeSPD;}
28
29     ClassDef(AliITSgeomSPD,1)   
30 };
31 #endif