]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONGainSubprocessor.h
No more misaligned_geometry
[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
8d8e920c 19class AliMUONVStore;
505bc496 20class TObjArray;
21
22class AliMUONGainSubprocessor : public AliMUONVSubprocessor
23{
24public:
25 AliMUONGainSubprocessor(AliMUONPreprocessor* master);
26 virtual ~AliMUONGainSubprocessor();
27
28 void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
29 UInt_t Process(TMap* dcsAliasMap);
505bc496 30
31private:
32 /// Not implemented
33 AliMUONGainSubprocessor(const AliMUONGainSubprocessor&);
34 /// Not implemented
35 AliMUONGainSubprocessor& operator=(const AliMUONGainSubprocessor&);
36
37 Int_t ReadFile(const char* filename);
38
39private:
8d8e920c 40 AliMUONVStore* fGains; //!< Gains for the MUON TRK
505bc496 41
42 ClassDef(AliMUONGainSubprocessor,1) // A shuttle preprocessor for MUON TRK gains
43};
44
45#endif