]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDPreprocessor.h
Error in phi in Mars2Lors
[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( ) {}
abb5f786 13 static char *fP; // Name of the aliases provided by the DCS
14 static char *fHV; // Name of the aliases provided by the DCS
15 static char *fT1; // Name of the aliases provided by the DCS
16 static char *fT2; // Name of the aliases provided by the DCS
d3da6dc4 17protected:
18 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
19 virtual UInt_t Process (TMap* pDcsMap );
20 ClassDef(AliHMPIDPreprocessor, 0);
21};
22
23#endif