]> git.uio.no Git - u/mrichter/AliRoot.git/blob - HMPID/AliHMPIDPreprocessor.h
Coding convention
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDPreprocessor.h
1 #ifndef AliHMPIDPreprocessor_h
2 #define AliHMPIDPreprocessor_h
3
4 #include <AliPreprocessor.h> //base class
5
6 //.
7 //HMPID Preprocessor base class 
8 //.
9 class TMap;
10
11 class AliHMPIDPreprocessor : public AliPreprocessor
12 {
13 public:
14            AliHMPIDPreprocessor(AliShuttleInterface* pShuttle):AliPreprocessor("HMP",pShuttle) {}
15   virtual ~AliHMPIDPreprocessor(                             )                                 {}
16   
17 protected:
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
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