]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - HMPID/AliHMPIDPreprocessor.h
All HVs set to 2050 (defaut one)
[u/mrichter/AliRoot.git] / HMPID / AliHMPIDPreprocessor.h
index 9ef3cb1dd28f1cd2b6174e5362da1e98597e5540..af6a7afadc0c8d063c0f233345c6f6c5ac82bdcd 100644 (file)
@@ -3,23 +3,29 @@
 
 #include <AliPreprocessor.h> //base class
 
+//.
+//.
+//HMPID Preprocessor base class 
+//.
+//.
 class TMap;
 
 class AliHMPIDPreprocessor : public AliPreprocessor
 {
 public:
-           AliHMPIDPreprocessor(AliShuttleInterface* pShuttle):AliPreprocessor("HMP",pShuttle) {}
+           AliHMPIDPreprocessor(AliShuttleInterface* pShuttle):AliPreprocessor("HMP",pShuttle) 
+           {
+               AddRunType("PHYSICS");
+               AddRunType("CALIBRATION");
+               AddRunType("STANDALONE");
+           }
   virtual ~AliHMPIDPreprocessor(                             )                                 {}
-  static char    *fP;     // Name of the aliases provided by the DCS
-  static char    *fHV;     // Name of the aliases provided by the DCS
-  static char    *fT1; // Name of the aliases provided by the DCS
-  static char    *fT2; // Name of the aliases provided by the DCS
 protected:
-  virtual void   Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
-  virtual UInt_t Process   (TMap* pDcsMap                              );
+  virtual void   Initialize(Int_t run, UInt_t startTime, UInt_t endTime); //
+  virtual UInt_t Process   (TMap* pDcsMap                              ); //process everthing
+          Bool_t ProcDcs   (TMap* pDcsMap                              ); //process DCS data points
+          Bool_t ProcPed   (                                           ); //process pedestal files
   ClassDef(AliHMPIDPreprocessor, 0);
 };
 
-typedef AliHMPIDPreprocessor AliRICHPreprocessor; // for backward compatibility
-
 #endif