]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TPC/AliTPCPreprocessor.h
Bug fix (Marian)
[u/mrichter/AliRoot.git] / TPC / AliTPCPreprocessor.h
index feedb7f23ec3c022bef5a1b28cb79d689ebc17e1..0c8839951d110eee025df4c1995440dd9b8c7597 100644 (file)
@@ -16,7 +16,7 @@ class AliTPCPreprocessor : public AliPreprocessor
 {
   public:
     AliTPCPreprocessor(AliShuttleInterface* shuttle);
-//    AliTPCPreprocessor(const AliTPCPreprocessor &org);
+    AliTPCPreprocessor(const AliTPCPreprocessor &org);
     virtual ~AliTPCPreprocessor();
 
   protected:
@@ -24,19 +24,23 @@ class AliTPCPreprocessor : public AliPreprocessor
     virtual UInt_t Process(TMap* dcsAliasMap);
     UInt_t  MapTemperature(TMap* dcsAliasMap);
     UInt_t  MapHighVoltage(TMap* dcsAliasMap);
+    UInt_t  MapGoofie(TMap* dcsAliasMap);
     UInt_t  ExtractPedestals(Int_t sourceFXS);
     UInt_t  ExtractPulser(Int_t sourceFXS);
     UInt_t  ExtractCE(Int_t sourceFXS);
+    UInt_t  ExtractQA(Int_t sourceFXS);
     AliTPCPreprocessor& operator = (const AliTPCPreprocessor& rhs);
 
   private:
     TEnv                   *fConfEnv;  // Preprocessor configuration map
     AliTPCSensorTempArray  *fTemp;     // CDB class for temperature sensors
     AliDCSSensorArray      *fHighVoltage; // DCS high voltage measurements
+    AliDCSSensorArray      *fHighVoltageStat; // DCS high voltage status
+    AliDCSSensorArray      *fGoofie;   // Goofie values from DCS
     Bool_t                 fConfigOK;  // Identify succesful reading of OCDB Config
     AliTPCROC              *fROC;      // TPC Read-Out configuration
 
-    ClassDef(AliTPCPreprocessor, 2)
+    ClassDef(AliTPCPreprocessor, 3)
 };
 
 #endif