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 | |
0a29d0f1 |
8 | /////////////////////////////////////////////////////////////////////////////// |
9 | // // |
10 | // TRD geometry for the spaceframe without holes // |
11 | // // |
12 | /////////////////////////////////////////////////////////////////////////////// |
13 | |
f7336fa3 |
14 | #include "AliTRDgeometry.h" |
15 | |
16 | class AliTRDgeometryFull : public AliTRDgeometry { |
17 | |
18 | public: |
19 | |
20 | AliTRDgeometryFull(); |
793ff80c |
21 | virtual ~AliTRDgeometryFull(); |
f7336fa3 |
22 | |
8230f242 |
23 | void CreateGeometry(Int_t *idtmed); |
793ff80c |
24 | Int_t IsVersion() const { return 1; }; |
6f1e466d |
25 | void Init(); |
26 | |
793ff80c |
27 | void SetPHOShole() { fPHOShole = kTRUE; }; |
28 | void SetRICHhole() { fRICHhole = kTRUE; }; |
6f1e466d |
29 | |
8737e16f |
30 | virtual void SetOldGeometry(); |
31 | |
793ff80c |
32 | Bool_t GetPHOShole() const { return fPHOShole; }; |
33 | Bool_t GetRICHhole() const { return fRICHhole; }; |
f7336fa3 |
34 | |
35 | protected: |
36 | |
0a770ac9 |
37 | Bool_t fPHOShole; // Switch for the hole in front of the PHOS |
38 | Bool_t fRICHhole; // Switch for the hole in front of the RICH |
f7336fa3 |
39 | |
0a770ac9 |
40 | ClassDef(AliTRDgeometryFull,2) // TRD geometry without hole |
f7336fa3 |
41 | |
42 | }; |
43 | |
44 | #endif |