]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSgeomSPD.h
Minor corrections for uninitialised variables.
[u/mrichter/AliRoot.git] / ITS / AliITSgeomSPD.h
1 #ifndef ITSgeomSPD_H
2 #define ITSgeomSPD_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 AliITSgeomSPD: 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 *fShapeSPD;
22     // Other infomation like.
23     // Float_t fPitchZ;     // cm
24     // Float_t fPitchY;     // cm
25     // Float_t fCellZ;      // cm
26     // Float_t fCellY;      // cm
27     // or what other or different information that is needed.
28  public:
29     AliITSgeomSPD();
30     virtual ~AliITSgeomSPD(){};
31     TBRIK *GetShape() const {return fShapeSPD;}
32
33     ClassDef(AliITSgeomSPD,1)   
34 };
35 #endif