]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TRD/AliTRDsimple.h
Fix bugs reported by Rene
[u/mrichter/AliRoot.git] / TRD / AliTRDsimple.h
1 #ifndef ALITRDSIMPLE_H
2 #define ALITRDSIMPLE_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 #include <TObject.h>
9
10 class AliTRDsimpleGen;
11  
12 class AliTRDsimple : public TObject {
13  
14  public:     
15
16   AliTRDsimple();
17   AliTRDsimple(const AliTRDsimple &s); 
18                                                                                 
19   virtual ~AliTRDsimple();
20   AliTRDsimple &operator=(const AliTRDsimple &s);    
21
22   virtual void             Init();
23   virtual void             Copy(TObject &s);
24   virtual void             ProcessEvent(Int_t ievent);
25
26   virtual AliTRDsimpleGen *GetGenerator()             { return fGenerator; };
27
28  protected:
29
30   AliTRDsimpleGen      *fGenerator;   //  The generator class for the simple simulator
31
32   ClassDef(AliTRDsimple,1)            //  Simplified TRD slow simulator
33  
34 };
35 #endif