]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDv1.h
Introduction of the reference to Copyright and cvs Id
[u/mrichter/AliRoot.git] / TRD / AliTRDv1.h
1 #ifndef TRDv1_H
2 #define TRDv1_H
3 /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
4  * See cxx source for full Copyright notice                               */
5
6 /* $Id$ */
7
8 ////////////////////////////////////////////////////////
9 //  Manager and hits classes for set:TRD version 1    //
10 ////////////////////////////////////////////////////////
11  
12 #include "AliTRD.h"
13              
14 class AliTRDv1 : public AliTRD {
15
16 public:
17   AliTRDv1() {}
18   AliTRDv1(const char *name, const char *title);
19   virtual      ~AliTRDv1() {}
20   virtual void  CreateGeometry();
21   virtual void  CreateMaterials();
22   virtual Int_t IsVersion() const {return 1;}
23   virtual void  SetHits(Int_t ihit = 1) { fHitsOn = ihit; };
24   virtual void  StepManager();
25   virtual void  Init();
26
27 protected:
28   Int_t        fIdSens;     // Sensitive volume identifier
29
30   Int_t        fIdSpace1;   // Spaceframe volume identifier
31   Int_t        fIdSpace2;   // 
32   Int_t        fIdSpace3;   // 
33
34   Int_t        fIdChamber1; // Driftchamber volume identifier
35   Int_t        fIdChamber2; // 
36   Int_t        fIdChamber3; // 
37
38   Int_t        fHitsOn;     // Used to switch hits on
39             
40   ClassDef(AliTRDv1,1)      // Transition Radiation Detector version 1
41
42 };
43
44 #endif