]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - TRD/AliTRDsimple.h
Track time measurement (S.Radomski)
[u/mrichter/AliRoot.git] / TRD / AliTRDsimple.h
... / ...
CommitLineData
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///////////////////////////////////////////////////////////////////////////////
9// //
10// Simplified TRD slow simulator //
11// //
12///////////////////////////////////////////////////////////////////////////////
13
14#include <TObject.h>
15
16class AliTRDsimpleGen;
17
18class AliTRDsimple : public TObject {
19
20 public:
21
22 AliTRDsimple();
23 AliTRDsimple(const AliTRDsimple &s);
24
25 virtual ~AliTRDsimple();
26 AliTRDsimple &operator=(const AliTRDsimple &s);
27
28 virtual void Init();
29 virtual void Copy(TObject &s);
30 virtual void ProcessEvent(Int_t ievent);
31
32 virtual AliTRDsimpleGen *GetGenerator() const { return fGenerator; };
33
34 protected:
35
36 AliTRDsimpleGen *fGenerator; // The generator class for the simple simulator
37
38 ClassDef(AliTRDsimple,1) // Simplified TRD slow simulator
39
40};
41#endif