]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSgeomSDD.h
Correct GetWire check on even/odd fnWires
[u/mrichter/AliRoot.git] / ITS / AliITSgeomSDD.h
1 #ifndef ITSgeomSDD_H
2 #define ITSgeomSDD_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 class AliITSgeomSDD: public TObject {
12  private:
13     // define shape of active area using ROOT shapes so that they can
14     // be easly plotted. Inputs to TBRIK are
15     // Shape name (what ever that is)
16     // Shape title (what ever that means)
17     // name of material (something I took from ITSgeometry.tme file
18     // dx => 1/2 thickness of wafer's active volume (cm)
19     // dy => 1/2 r*phi size of active volume (cm)
20     // dz => 1/2 size of active volume (cm)
21     TBRIK *fShapeSDD;
22     // Other infomation like.
23     // Int_t   fNAnodes;         // count
24     // Float_t fAnodePitch;      // cm
25     // Float_t fAnodeWidth;      // cm
26     // or what other or different information that is needed.
27  public:
28     AliITSgeomSDD();
29     virtual ~AliITSgeomSDD(){};
30     TBRIK *GetShape() const {return fShapeSDD;}
31
32     ClassDef(AliITSgeomSDD,1)   
33 };
34 #endif