]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TPC/AliTPCDigitizer.h
Improvements of the code.
[u/mrichter/AliRoot.git] / TPC / AliTPCDigitizer.h
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     void ExecFast(Option_t* option=0); //digitize - using row pointers
23     void ExecSave(Option_t* option=0); // digitize using controlled arrays   
24     Int_t fDebug;
25  private:
26     ClassDef(AliTPCDigitizer,2)  // MUON merging/digitization
27 };    
28 #endif
29