Line data Source code
1 : #ifndef AliMFTSupport_H
2 : #define AliMFTSupport_H
3 :
4 : /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5 : * See cxx source for full Copyright notice */
6 :
7 : //=============================================================================================
8 : //
9 : // Class describing geometry of one MFT half-disk support
10 : //
11 : // Contact author: raphael.tieulent@cern.ch
12 : //
13 : //=============================================================================================
14 :
15 : #include "TNamed.h"
16 : #include "AliLog.h"
17 : #include "TGeoVolume.h"
18 :
19 : //=============================================================================================
20 :
21 :
22 0 : class AliMFTSupport : public TNamed {
23 :
24 : public:
25 :
26 : AliMFTSupport();
27 :
28 : virtual ~AliMFTSupport();
29 :
30 : TGeoVolumeAssembly* CreateVolume(Int_t half, Int_t disk);
31 : TGeoVolumeAssembly* CreatePCBs(Int_t half, Int_t disk);
32 : TGeoVolume* CreateSupport(Int_t half, Int_t disk);
33 :
34 :
35 : protected:
36 :
37 : TGeoVolumeAssembly * fSupportVolume;
38 : Double_t fSupportThickness;
39 : Double_t fPCBThickness;
40 :
41 : private:
42 :
43 14 : ClassDef(AliMFTSupport,1)
44 :
45 : };
46 :
47 : //=============================================================================================
48 :
49 : #endif
50 :
|