]> git.uio.no Git - u/mrichter/AliRoot.git/blame - HMPID/AliHMPIDPreprocessor.h
ANALYSIS lib is added
[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( ) {}
423554a3 16
d3da6dc4 17protected:
423554a3 18 static char *fgP; // Name of the aliases provided by the DCS
19 static char *fgHV; // Name of the aliases provided by the DCS
20 static char *fgT1; // Name of the aliases provided by the DCS
21 static char *fgT2; // Name of the aliases provided by the DCS
d3da6dc4 22 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
23 virtual UInt_t Process (TMap* pDcsMap );
24 ClassDef(AliHMPIDPreprocessor, 0);
25};
26
27#endif