]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDsimple.h
Use correct name for digitizer
[u/mrichter/AliRoot.git] / TRD / AliTRDsimple.h
CommitLineData
16bf9884 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
10class AliTRDsimpleGen;
11
12class 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 Copy(TObject &s);
23 virtual void ProcessEvent(Int_t ievent);
24
25 virtual AliTRDsimpleGen *GetGenerator() { return fGenerator; };
26
27 protected:
28
29 AliTRDsimpleGen *fGenerator; // The generator class for the simple simulator
30
31 ClassDef(AliTRDsimple,1) // Simplified TRD slow simulator
32
33};
34#endif