]> git.uio.no Git - u/mrichter/AliRoot.git/blob - ITS/AliITSgeomSSD.h
94205fb262e272eb08edb4773ca94910041448b4
[u/mrichter/AliRoot.git] / ITS / AliITSgeomSSD.h
1 #ifndef ALIITSGEOMSSD_H
2 #define ALIITSGEOMSSD_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 AliITSgeomSSD : public TObject {
12
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 *fShapeSSD;
23     // Other infomation like.
24     // Float_t fTopPitch;      // cm
25     // Float_t fTopWidth;      // cm
26     // Float_t fTopLength;     // cm
27     // Float_t fTopAngle;      // cm
28     // Float_t fBottomPitch;   // cm
29     // Float_t fBottomWidth;   // cm
30     // Float_t fBottomLength;  // cm
31     // Float_t fBottomAngle;   // cm
32     // or what other or different information that is needed.
33  public:
34     AliITSgeomSSD();
35     virtual ~AliITSgeomSSD() {};
36     TBRIK *GetShape() const {return fShapeSSD;}
37
38     ClassDef(AliITSgeomSSD,1) // ITS SSD detector geometry class
39 };
40 #endif