]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSgeomSDD.h
Introduction of the Copyright and cvs Log
[u/mrichter/AliRoot.git] / ITS / AliITSgeomSDD.h
CommitLineData
58005f18 1#ifndef ITSgeomSDD_H
2#define ITSgeomSDD_H
3
4#include "TShape.h"
5#include "TBRIK.h"
6
7class AliITSgeomSDD: 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 *fShapeSDD;
18 // Other infomation like.
19 // Int_t fNAnodes; // count
20 // Float_t fAnodePitch; // cm
21 // Float_t fAnodeWidth; // cm
22 // or what other or different information that is needed.
23 public:
24 AliITSgeomSDD();
25 virtual ~AliITSgeomSDD(){};
26 inline TBRIK *GetShape(){return fShapeSDD;}
27
28 ClassDef(AliITSgeomSDD,1)
29};
30#endif