]> git.uio.no Git - u/mrichter/AliRoot.git/blame - TRD/AliTRDsimple.h
Compiler Warning removed
[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
0a29d0f1 8///////////////////////////////////////////////////////////////////////////////
9// //
10// Simplified TRD slow simulator //
11// //
12///////////////////////////////////////////////////////////////////////////////
13
16bf9884 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
a1c3aded 28 virtual void Init();
16bf9884 29 virtual void Copy(TObject &s);
30 virtual void ProcessEvent(Int_t ievent);
31
0a29d0f1 32 virtual AliTRDsimpleGen *GetGenerator() const { return fGenerator; };
16bf9884 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