]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONGainSubprocessor.h
sync with GSI svn
[u/mrichter/AliRoot.git] / MUON / AliMUONGainSubprocessor.h
index b1dd166141384b9c9abd27d0928c91a11411cb00..d6bb61ae270a3d7783df7297e59797533cabf030 100644 (file)
 #  include "AliMUONVSubprocessor.h"
 #endif
 
-class AliMUONV2DStore;
+#ifndef ROOT_TString
+#  include "TString.h"
+#endif
+
+class AliMUONVStore;
 class TObjArray;
 
 class AliMUONGainSubprocessor : public AliMUONVSubprocessor
@@ -25,9 +29,8 @@ public:
   AliMUONGainSubprocessor(AliMUONPreprocessor* master);
   virtual ~AliMUONGainSubprocessor();
   
-  void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
+  Bool_t Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
   UInt_t Process(TMap* dcsAliasMap);
-  void Print(Option_t* opt="") const;
   
 private:
   /// Not implemented
@@ -38,9 +41,11 @@ private:
   Int_t ReadFile(const char* filename);
 
 private:
-  AliMUONV2DStore* fGains; //!< Gains for the MUON TRK
+  AliMUONVStore* fGains; //!< Gains for the MUON TRK
+  Bool_t fSkip; //!< whether we should skip this run (because it's dummy)
+  TString fComment; //!< comment for OCDB entry
   
-  ClassDef(AliMUONGainSubprocessor,1) // A shuttle preprocessor for MUON TRK gains
+  ClassDef(AliMUONGainSubprocessor,2) // A shuttle preprocessor for MUON TRK gains
 };
 
 #endif