]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSgeomSDD.h
New version containing the files for tracking
[u/mrichter/AliRoot.git] / ITS / AliITSgeomSDD.h
CommitLineData
26b7ec2a 1#ifndef ALIITSGEOMSDD_H
2#define ALIITSGEOMSDD_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
5323dece 8#include <TObject.h>
e8189707 9//#include "AliITSgeom.h"
5323dece 10
92c19c36 11class TBRIK;
e8189707 12class AliITSgeom;
58005f18 13
14class AliITSgeomSDD: public TObject {
5323dece 15 public:
16 AliITSgeomSDD();
17 AliITSgeomSDD(AliITSgeomSDD &source);
18 virtual ~AliITSgeomSDD(){};
19 AliITSgeomSDD& operator=(AliITSgeomSDD &source);
20 TBRIK *GetShape() const {return fShapeSDD;}
21 Float_t GetDx() {return fDx;}
22 Float_t GetDy() {return fDy;}
23 Float_t GetDz() {return fDz;}
24 // or what other or different information that is needed.
25
58005f18 26 private:
27 // define shape of active area using ROOT shapes so that they can
28 // be easly plotted. Inputs to TBRIK are
29 // Shape name (what ever that is)
30 // Shape title (what ever that means)
31 // name of material (something I took from ITSgeometry.tme file
32 // dx => 1/2 thickness of wafer's active volume (cm)
33 // dy => 1/2 r*phi size of active volume (cm)
34 // dz => 1/2 size of active volume (cm)
5323dece 35 Float_t fDx; // Brick half width cm
36 Float_t fDy; // Brick half thickness cm
37 Float_t fDz; // Brick half length cm
38 TBRIK *fShapeSDD; // shape of sensitive volume
58005f18 39
26b7ec2a 40 ClassDef(AliITSgeomSDD,1) // ITS SDD detector geometry class
58005f18 41};
42#endif