]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TOF/AliTOFv0.h
Medium array is now private for each module
[u/mrichter/AliRoot.git] / TOF / AliTOFv0.h
1 #ifndef TOFv0_H
2 #define TOFv0_H
3 ///////////////////////////////////////////////////////
4 //  Manager and hits classes for set:TOF  version 0  //
5 ///////////////////////////////////////////////////////
6  
7 #include "AliTOF.h"
8 #include "AliHit.h"
9  
10  
11 class AliTOFv0 : public AliTOF {
12   
13 protected:
14   Int_t fIdFBT2; // Identifier of the first sensitive volume
15   Int_t fIdFBT3; // Identifier of the second sensitive volume
16   
17 public:
18   AliTOFv0();
19   AliTOFv0(const char *name, const char *title);
20   virtual      ~AliTOFv0() {}
21   virtual void  CreateGeometry();
22   virtual void  CreateMaterials();
23   virtual void  Init();
24   virtual Int_t IsVersion() const {return 0;}
25   virtual void  StepManager();
26   virtual void    DrawModule();
27   
28   ClassDef(AliTOFv0,1)  // Time Of Flight version 0
29 };
30  
31 #endif