]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSgeomSPD.h
New diagnostics for particle flux trough the RICH.
[u/mrichter/AliRoot.git] / ITS / AliITSgeomSPD.h
CommitLineData
a3d834a0 1#ifndef ALIITSGEOMSPD_H
2#define ALIITSGEOMSPD_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
a3d834a0 11
58005f18 12class AliITSgeomSPD: public TObject {
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 *fShapeSPD;
23 // Other infomation like.
24 // Float_t fPitchZ; // cm
25 // Float_t fPitchY; // cm
26 // Float_t fCellZ; // cm
27 // Float_t fCellY; // cm
28 // or what other or different information that is needed.
a3d834a0 29 Float_t dx;
30 Float_t dy;
31 Float_t dz;
32
58005f18 33 public:
34 AliITSgeomSPD();
35 virtual ~AliITSgeomSPD(){};
593d2ea1 36 TBRIK *GetShape() const {return fShapeSPD;}
58005f18 37
a3d834a0 38
39 Float_t GetDx() const {return dx;}
40 Float_t GetDy() const {return dy;}
41 Float_t GetDz() const {return dz;}
42
43 ClassDef(AliITSgeomSPD,1) // ITS SPD detector geometry class
58005f18 44};
45#endif