]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDPreprocessor.h
bugfix: corrected defines to use right default algorithms
[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
423554a3 6//.
7//HMPID Preprocessor base class
8//.
d3da6dc4 9class TMap;
10
11class AliHMPIDPreprocessor : public AliPreprocessor
12{
13public:
745cdf23 14 AliHMPIDPreprocessor(AliShuttleInterface* pShuttle):AliPreprocessor("HMP",pShuttle) {}
15 virtual ~AliHMPIDPreprocessor( ) {}
d3da6dc4 16protected:
56d2de52 17 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime); //
18 virtual UInt_t Process (TMap* pDcsMap ); //process everthing
19 Bool_t ProcDcs (TMap* pDcsMap ); //process DCS data points
20 Bool_t ProcPed ( ); //process pedestal files
d3da6dc4 21 ClassDef(AliHMPIDPreprocessor, 0);
22};
23
24#endif