]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSgeomSDD.h
New virtual SPD geometry class
[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
8#include "TShape.h"
9#include "TBRIK.h"
10
11class AliITSgeomSDD: public TObject {
12 private:
13 // define shape of active area using ROOT shapes so that they can
14 // be easly plotted. Inputs to TBRIK are
15 // Shape name (what ever that is)
16 // Shape title (what ever that means)
17 // name of material (something I took from ITSgeometry.tme file
18 // dx => 1/2 thickness of wafer's active volume (cm)
19 // dy => 1/2 r*phi size of active volume (cm)
20 // dz => 1/2 size of active volume (cm)
21 TBRIK *fShapeSDD;
22 // Other infomation like.
23 // Int_t fNAnodes; // count
24 // Float_t fAnodePitch; // cm
25 // Float_t fAnodeWidth; // cm
26 // or what other or different information that is needed.
27 public:
28 AliITSgeomSDD();
29 virtual ~AliITSgeomSDD(){};
593d2ea1 30 TBRIK *GetShape() const {return fShapeSDD;}
58005f18 31
26b7ec2a 32 ClassDef(AliITSgeomSDD,1) // ITS SDD detector geometry class
58005f18 33};
34#endif