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