]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSgeomSPD.h
ba2f00c40b641f8676b973f2400ef36686bd7b92
[u/mrichter/AliRoot.git] / ITS / AliITSgeomSPD.h
1 #ifndef ALIITSGEOMSPD_H
2 #define ALIITSGEOMSPD_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 #include "TShape.h"
9 #include "TBRIK.h"
10
11
12 class AliITSgeomSPD: public TObject {
13  private:
14     // define shape of active area using ROOT shapes so that they can
15     // be easly plotted. Inputs to TBRIK are
16     // Shape name (what ever that is)
17     // Shape title (what ever that means)
18     // name of material (something I took from ITSgeometry.tme file
19     // dx => 1/2 thickness of wafer's active volume (cm)
20     // dy => 1/2 r*phi size of active volume (cm)
21     // dz => 1/2 size of active volume (cm)
22     TBRIK *fShapeSPD;
23     // Other infomation like.
24     // Float_t fPitchZ;     // cm
25     // Float_t fPitchY;     // cm
26     // Float_t fCellZ;      // cm
27     // Float_t fCellY;      // cm
28     // or what other or different information that is needed.
29     Float_t dx;
30     Float_t dy;
31     Float_t dz;
32
33  public:
34     AliITSgeomSPD();
35     virtual ~AliITSgeomSPD(){};
36     TBRIK *GetShape() const {return fShapeSPD;}
37
38     
39     Float_t GetDx() const {return dx;}
40     Float_t GetDy() const {return dy;}
41     Float_t GetDz() const {return dz;}
42
43     ClassDef(AliITSgeomSPD,1) // ITS SPD detector geometry class
44 };
45 #endif