]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSgeomSSD.h
Merged form ITS-working to HEAD. Minor changes
[u/mrichter/AliRoot.git] / ITS / AliITSgeomSSD.h
CommitLineData
58005f18 1#ifndef ITSgeomSSD_H
2#define ITSgeomSSD_H
3da30618 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
58005f18 7
8#include "TShape.h"
9#include "TBRIK.h"
10
11class 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() {};
593d2ea1 36 TBRIK *GetShape() const {return fShapeSSD;}
58005f18 37
38 ClassDef(AliITSgeomSSD,1)
39};
40#endif