]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDv0.h
trigger X taken into account (Christian)
[u/mrichter/AliRoot.git] / TRD / AliTRDv0.h
1 #ifndef ALITRDV0_H
2 #define ALITRDV0_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 //                                                                        //
10 //  Manager and hits classes for set: TRD version 0                       //
11 //                                                                        //
12 ////////////////////////////////////////////////////////////////////////////
13  
14 #include "AliTRD.h"
15
16 class AliTRDsim;
17
18 class AliTRDv0 : public AliTRD {
19
20  public:
21
22   AliTRDv0();
23   AliTRDv0(const char *name, const char *title);
24   virtual ~AliTRDv0();
25
26   virtual Int_t    IsVersion() const           { return 0;    };
27   virtual void     Init();
28
29   virtual void     CreateGeometry();
30   virtual void     CreateMaterials();
31
32   virtual void     StepManager();
33  
34   virtual void     SetHits()                   { fHitsOn = 1; };
35           void     SetTR(Bool_t )              { };
36
37           Bool_t   GetTR() const               { return 0;    };
38
39  protected:
40
41           Int_t    fHitsOn;     //  Used to switch hits on
42
43   ClassDef(AliTRDv0,2)          //  Transition Radiation Detector version 0 (fast simulator)
44
45 };
46
47 #endif