]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDv2.h
Added a cut on PtHard at 2.76 GeV/c (Nicole)
[u/mrichter/AliRoot.git] / TRD / AliTRDv2.h
1 #ifndef ALITRDV2_H
2 #define ALITRDV2_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 2   //
10 ////////////////////////////////////////////////////////
11
12 #include "AliTRDv1.h"
13
14 //_____________________________________________________________________________
15 class AliTRDv2 : public AliTRDv1 {
16
17  public:
18
19   AliTRDv2();
20   AliTRDv2(const char *name, const char *title);
21   AliTRDv2(const AliTRDv2 &trd);
22   virtual ~AliTRDv2();
23   AliTRDv2 &operator=(const AliTRDv2 &trd);
24
25   virtual void       Copy(TObject &trd) const;
26   virtual void       CreateGeometry();
27   virtual void       CreateMaterials();
28   virtual Int_t      IsVersion() const          { return 2; };
29
30  protected:
31
32  private:
33    
34   ClassDef(AliTRDv2,1) // Transition Radiation Detector version 2 (slow simulator,detailed geometry)
35
36 };
37
38 #endif