| 1 | #ifndef ALITPCDIGITIZER_H |
| 2 | #define ALITPCDIGITIZER_H |
| 3 | /* Copyright(c) 1998-2001, ALICE Experiment at CERN, All rights reserved. * |
| 4 | * See cxx source for full Copyright notice */ |
| 5 | |
| 6 | #include "AliDigitizer.h" |
| 7 | |
| 8 | class AliRunDigitizer; |
| 9 | |
| 10 | class AliTPCDigitizer : public AliDigitizer { |
| 11 | public: |
| 12 | AliTPCDigitizer(); |
| 13 | AliTPCDigitizer(AliRunDigitizer * manager); |
| 14 | virtual ~AliTPCDigitizer(); |
| 15 | // Initialize merging and digitization |
| 16 | virtual Bool_t Init(); |
| 17 | // Do the main work |
| 18 | virtual void Exec(Option_t* option=0); |
| 19 | Int_t GetDebug() const {return fDebug;} // get debug level |
| 20 | void SetDebug(Int_t level){fDebug = level;} // set debug level |
| 21 | private: |
| 22 | Int_t fDebug; |
| 23 | private: |
| 24 | ClassDef(AliTPCDigitizer,1) // MUON merging/digitization |
| 25 | }; |
| 26 | #endif |
| 27 | |