]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - MUON/AliMUONHVSubprocessor.h
add pt spectra histograms for different pile-up event definition
[u/mrichter/AliRoot.git] / MUON / AliMUONHVSubprocessor.h
index 26d69aace8516ca0aa9f3be3fa125d8e4013b0b3..20fb098c044613dc66a33664bca1f2a952bc3811 100644 (file)
@@ -9,7 +9,8 @@
 /// \ingroup shuttle
 /// \class AliMUONHVSubprocessor
 /// \brief A subprocessor to read HV values for one run
-/// \author Laurent Aphecetche
+///
+//  Author Laurent Aphecetche
 
 #ifndef ALIMUONVSUBPROCESSOR_H
 #  include "AliMUONVSubprocessor.h"
 class AliMUONHVSubprocessor : public AliMUONVSubprocessor
 {
 public:
-  AliMUONHVSubprocessor(AliMUONPreprocessor* master);
+  AliMUONHVSubprocessor(AliMUONPreprocessor* master, Bool_t includeHVcurrents=kFALSE);
   virtual ~AliMUONHVSubprocessor();
   
   virtual UInt_t Process(TMap* dcsAliasMap);
 
+  Bool_t IncludeHVCurrent() const { return fIncludeHVCurrents; }
+  
 private:
+  /// Not implemented
   AliMUONHVSubprocessor(const AliMUONHVSubprocessor&);
+  /// Not implemented
   AliMUONHVSubprocessor& operator=(const AliMUONHVSubprocessor&);
   
-  ClassDef(AliMUONHVSubprocessor,1) // Shuttle Subprocessor for MUON TRK HV
+  Bool_t fIncludeHVCurrents; // whether or not to transfer also HV current (in addition to HV voltages)
+  
+  ClassDef(AliMUONHVSubprocessor,2) // Shuttle Subprocessor for MUON TRK HV
 };
 
 #endif