]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDPreprocessor.h
Minor changes
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDPreprocessor.h
CommitLineData
d3da6dc4 1#ifndef AliHMPIDPreprocessor_h
2#define AliHMPIDPreprocessor_h
3
4#include <AliPreprocessor.h> //base class
5
6class TMap;
7
8class AliHMPIDPreprocessor : public AliPreprocessor
9{
10public:
745cdf23 11 AliHMPIDPreprocessor(AliShuttleInterface* pShuttle):AliPreprocessor("HMP",pShuttle) {}
12 virtual ~AliHMPIDPreprocessor( ) {}
d3da6dc4 13protected:
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
cf7e313e 19typedef AliHMPIDPreprocessor AliRICHPreprocessor; // for backward compatibility
20
d3da6dc4 21#endif