]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDgeometryFull.h
Major upgrades to the strip structure
[u/mrichter/AliRoot.git] / TRD / AliTRDgeometryFull.h
CommitLineData
dd9a6ee3 1#ifndef ALITRDGEOMETRYFULL_H
2#define ALITRDGEOMETRYFULL_H
f7336fa3 3/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4 * See cxx source for full Copyright notice */
5
6/* $Id$ */
7
8#include "AliTRDgeometry.h"
9
10class AliTRDgeometryFull : public AliTRDgeometry {
11
12 public:
13
14 AliTRDgeometryFull();
793ff80c 15 virtual ~AliTRDgeometryFull();
f7336fa3 16
8230f242 17 void CreateGeometry(Int_t *idtmed);
793ff80c 18 Int_t IsVersion() const { return 1; };
6f1e466d 19 void Init();
20
793ff80c 21 void SetPHOShole() { fPHOShole = kTRUE; };
22 void SetRICHhole() { fRICHhole = kTRUE; };
6f1e466d 23
71d9fa7b 24 void SetNRowPad();
25 virtual void SetNRowPad(Int_t p, Int_t c, Int_t npad);
793ff80c 26
27 Bool_t GetPHOShole() const { return fPHOShole; };
28 Bool_t GetRICHhole() const { return fRICHhole; };
f7336fa3 29
30 protected:
31
6f1e466d 32 Bool_t fPHOShole; // Switch for the hole in front of the PHOS
33 Bool_t fRICHhole; // Switch for the hole in front of the RICH
34
f7336fa3 35 Float_t fClengthI[kNplan]; // Length of the inner chambers
6f1e466d 36 Float_t fClengthM1[kNplan]; // Length of the middle chambers
8230f242 37 Float_t fClengthM2[kNplan]; // Length of the middle chambers
6f1e466d 38 Float_t fClengthO1[kNplan]; // Length of the outer chambers
8230f242 39 Float_t fClengthO2[kNplan]; // Length of the outer chambers
40 Float_t fClengthO3[kNplan]; // Length of the outer chambers
f7336fa3 41
42 ClassDef(AliTRDgeometryFull,1) // TRD geometry without hole
43
44};
45
46#endif