]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFv4T0.h
updae of the GPU framework
[u/mrichter/AliRoot.git] / TOF / AliTOFv4T0.h
1 #ifndef ALITOFv4T0_H
2 #define ALITOFv4T0_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 // Implementation version v4 of TOF Manager class                              //
10 // FULL COVERAGE VERSION i.e. NO HOLES FOR PHOS AND HMPID (RICH) ARE DEFINED   //
11 //                                                                             //
12 // -- Authors: Pierella, Seganti, Vicinanza (Bologna and Salerno University)   //
13 //                                                                             //
14 //_____________________________________________________________________________//
15
16 #include "AliTOF.h"
17  
18  
19 class AliTOFv4T0 : public AliTOF {
20
21 public:
22   AliTOFv4T0();
23   AliTOFv4T0(const char *name, const char *title);
24   virtual ~AliTOFv4T0() {};
25   virtual void   CreateGeometry();
26   virtual void   CreateMaterials();
27   virtual void   Init();
28   virtual Int_t  IsVersion() const {return 6;}
29   virtual void   TOFpc(Float_t xtof,Float_t ytof,Float_t zlenC,Float_t zlenB,
30                        Float_t zlenA,Float_t ztof0);
31   virtual void   TOFpc(Float_t, Float_t, Float_t, Float_t) {};
32   virtual void   StepManager();
33   virtual void   DrawModule() const;
34   virtual void   DrawDetectorModules() const;
35   virtual void   DrawDetectorStrips() const;
36  
37 private:
38   Int_t fIdFTOA; // FTOA volume identifier (outer plate A)
39   Int_t fIdFTOB; // FTOB volume identifier (outer plate B)
40   Int_t fIdFTOC; // FTOC volume identifier (outer plate C)
41   Int_t fIdFLTA; // FLTA volume identifier (inner plate A)
42   Int_t fIdFLTB; // FLTB volume identifier (inner plate B)
43   Int_t fIdFLTC; // FLTC volume identifier (inner plate C)
44   Bool_t fTOFHoles; // Selecting Geometry with and w/o holes
45  
46   ClassDef(AliTOFv4T0,2)  //Time Of Flight version 4
47 };
48  
49 #endif /* ALITOFv4T0_H */