]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFv4T0.h
added the delete of EMCAL object posted in the folder when new file is opened
[u/mrichter/AliRoot.git] / TOF / AliTOFv4T0.h
1 //_________________________________________________________________________
2 // Implementation version v4 of TOF Manager class
3 // FULL COVERAGE VERSION i.e. NO HOLES FOR PHOS AND HMPID (RICH) ARE DEFINED
4 //   
5 //*-- Authors: Pierella, Seganti, Vicinanza (Bologna and Salerno University)
6
7 #ifndef ALITOFv4T0_H
8 #define ALITOFv4T0_H
9 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
10  * See cxx source for full Copyright notice                               */
11
12 #include "AliTOF.h"
13  
14  
15 class AliTOFv4T0 : public AliTOF {
16
17 public:
18   AliTOFv4T0();
19   AliTOFv4T0(const char *name, const char *title);
20   virtual ~AliTOFv4T0() {}
21   virtual void   BuildGeometry();
22   virtual void   CreateGeometry();
23   virtual void   CreateMaterials();
24   virtual void   Init();
25   virtual Int_t  IsVersion() const {return 6;}
26   virtual void   TOFpc(Float_t xtof,Float_t ytof,Float_t zlenC,Float_t zlenB,
27                        Float_t zlenA,Float_t ztof0);
28   virtual void   StepManager();
29   virtual void   DrawModule() const;
30   virtual void   DrawDetectorModules();
31   virtual void   DrawDetectorStrips();
32 //  virtual void   DrawDetectorModulesinFrame();
33 //  virtual void   DrawDetectorStripsinFrame();
34
35 private:
36   Int_t fIdFTOA; // FTOA volume identifier (outer plate A)
37   Int_t fIdFTOB; // FTOB volume identifier (outer plate B)
38   Int_t fIdFTOC; // FTOC volume identifier (outer plate C)
39   Int_t fIdFLTA; // FLTA volume identifier (inner plate A)
40   Int_t fIdFLTB; // FLTB volume identifier (inner plate B)
41   Int_t fIdFLTC; // FLTC volume identifier (inner plate C)
42   
43    ClassDef(AliTOFv4T0,1)  //Time Of Flight version 4
44 };
45  
46 #endif /* ALITOFv4T0_H */