]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDPreprocessor.h
AliHMPIDDigitN no longer needed
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDPreprocessor.h
1 #ifndef AliHMPIDPreprocessor_h
2 #define AliHMPIDPreprocessor_h
3
4 #include <AliPreprocessor.h> //base class
5
6 class TMap;
7
8 class AliHMPIDPreprocessor : public AliPreprocessor
9 {
10 public:
11            AliHMPIDPreprocessor(AliShuttleInterface* pShuttle):AliPreprocessor("HMP",pShuttle) {}
12   virtual ~AliHMPIDPreprocessor(                             )                                 {}
13 protected:
14   virtual void   Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
15   virtual UInt_t Process   (TMap* pDcsMap                              );
16   ClassDef(AliHMPIDPreprocessor, 0);
17 };
18
19 typedef AliHMPIDPreprocessor AliRICHPreprocessor; // for backward compatibility
20
21 #endif