]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONPedestalSubprocessor.h
Removing dependences on AliDAQ class (in raw)
[u/mrichter/AliRoot.git] / MUON / AliMUONPedestalSubprocessor.h
1 #ifndef ALIMUONPEDESTALSUBPROCESSOR_H
2 #define ALIMUONPEDESTALSUBPROCESSOR_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 AliMUONPedestalSubprocessor
11 /// \brief Implementation of AliMUONVSubprocessor for MUON TRK pedestals
12 /// 
13 /// \author Laurent Aphecetche
14
15 #ifndef ALIMUONVSUBPROCESSOR_H
16 #  include "AliMUONVSubprocessor.h"
17 #endif
18
19 class AliMUONV2DStore;
20 class TObjArray;
21
22 class AliMUONPedestalSubprocessor : public AliMUONVSubprocessor
23 {
24 public:
25   AliMUONPedestalSubprocessor(AliMUONPreprocessor* master);
26   virtual ~AliMUONPedestalSubprocessor();
27   
28   void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
29   UInt_t Process(TMap* dcsAliasMap);
30   void Print(Option_t* opt="") const;
31   
32 private:
33   AliMUONPedestalSubprocessor(const AliMUONPedestalSubprocessor&);
34   AliMUONPedestalSubprocessor& operator=(const AliMUONPedestalSubprocessor&);
35   
36   Bool_t ReadFile(const char* filename);
37   void ReportMissing(const TObjArray& chambers);
38   
39 private:
40   AliMUONV2DStore* fPedestals; //! Pedestals for the MUON TRK
41   
42   ClassDef(AliMUONPedestalSubprocessor,1) // A shuttle preprocessor for MUON TRK pedetals
43 };
44
45 #endif