]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDsimple.h
Corrected misplaced braces in DigitizeEnergy and adjusted the Tower ADC range to...
[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
a1c3aded 22 virtual void Init();
16bf9884 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