]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HMPID/AliHMPIDPreprocessor.h
Pedestals in OCDB + minors
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDPreprocessor.h
index 995ee69435d312567a111816749c0343c577e95f..c7b32f3fd5b340fa4567b8bc1bf5f939ffd47c49 100644 (file)
@@ -3,19 +3,28 @@
 
 #include <AliPreprocessor.h> //base class
 
+//.
+//HMPID Preprocessor base class 
+//.
 class TMap;
 
 class AliHMPIDPreprocessor : public AliPreprocessor
 {
 public:
-           AliHMPIDPreprocessor(AliShuttleInterface* pShuttle):AliPreprocessor("HMPID",pShuttle)  {}
-  virtual ~AliHMPIDPreprocessor(                             )                                   {}
+           AliHMPIDPreprocessor(AliShuttleInterface* pShuttle):AliPreprocessor("HMP",pShuttle) {}
+  virtual ~AliHMPIDPreprocessor(                             )                                 {}
+  static char*     GetP ()    {return fgP;}        //getter for pressure
+  static char*     GetHV()    {return fgHV;}       //getter for high voltage
+  static char*     GetT1()    {return fgT1;}       //getter for inlet temperature
+  static char*     GetT2()    {return fgT2;}       //getter for inlet temperature
 protected:
+  static char    *fgP;     // Name of the aliases provided by the DCS
+  static char    *fgHV;    // Name of the aliases provided by the DCS
+  static char    *fgT1;    // Name of the aliases provided by the DCS
+  static char    *fgT2;    // Name of the aliases provided by the DCS
   virtual void   Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
   virtual UInt_t Process   (TMap* pDcsMap                              );
   ClassDef(AliHMPIDPreprocessor, 0);
 };
 
-typedef AliHMPIDPreprocessor AliRICHPreprocessor; // for backward compatibility
-
 #endif