]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONGainSubprocessor.h
a/ AliTRDCalibTask.cxx .h: one histo more to quantify the event selection if any...
[u/mrichter/AliRoot.git] / MUON / AliMUONGainSubprocessor.h
CommitLineData
505bc496 1#ifndef ALIMUONGAINSUBPROCESSOR_H
2#define ALIMUONGAINSUBPROCESSOR_H
3
4/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
5* See cxx source for full Copyright notice */
6
7// $Id$
8
9/// \ingroup shuttle
10/// \class AliMUONGainSubprocessor
11/// \brief Implementation of AliMUONVSubprocessor for MUON TRK Gains
12///
13// Author Laurent Aphecetche
14
15#ifndef ALIMUONVSUBPROCESSOR_H
16# include "AliMUONVSubprocessor.h"
17#endif
18
81028269 19#ifndef ROOT_TString
20# include "TString.h"
21#endif
22
8d8e920c 23class AliMUONVStore;
505bc496 24class TObjArray;
25
26class AliMUONGainSubprocessor : public AliMUONVSubprocessor
27{
28public:
29 AliMUONGainSubprocessor(AliMUONPreprocessor* master);
30 virtual ~AliMUONGainSubprocessor();
31
6c870207 32 Bool_t Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
505bc496 33 UInt_t Process(TMap* dcsAliasMap);
505bc496 34
35private:
36 /// Not implemented
37 AliMUONGainSubprocessor(const AliMUONGainSubprocessor&);
38 /// Not implemented
39 AliMUONGainSubprocessor& operator=(const AliMUONGainSubprocessor&);
40
41 Int_t ReadFile(const char* filename);
42
43private:
8d8e920c 44 AliMUONVStore* fGains; //!< Gains for the MUON TRK
81028269 45 Bool_t fSkip; //!< whether we should skip this run (because it's dummy)
7332f213 46 TString fComment; //!< comment for OCDB entry
505bc496 47
81028269 48 ClassDef(AliMUONGainSubprocessor,2) // A shuttle preprocessor for MUON TRK gains
505bc496 49};
50
51#endif