]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTrackerPreprocessor.h
Fixing an erreneous message logic
[u/mrichter/AliRoot.git] / MUON / AliMUONTrackerPreprocessor.h
1 #ifndef ALIMUONTRACKERPREPROCESSOR_H
2 #define ALIMUONTRACKERPREPROCESSOR_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 AliMUONTrackerPreprocessor
11 /// \brief Shuttle preprocessor for MUON tracker
12 /// 
13 //  Author Laurent Aphecetche
14
15 #include "AliMUONPreprocessor.h"
16
17 class AliMUONPedestalSubprocessor;
18 class AliMUONGMSSubprocessor;
19 class AliMUONHVSubprocessor;
20 class AliMUONGainSubprocessor;
21 class AliMUONOccupancySubprocessor;
22
23 class TObjArray;
24
25 class AliMUONTrackerPreprocessor : public AliMUONPreprocessor
26 {
27 public:
28   AliMUONTrackerPreprocessor(AliShuttleInterface* shuttle);
29   virtual ~AliMUONTrackerPreprocessor();
30   
31   virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
32
33 private:
34   /// Not implemented
35   AliMUONTrackerPreprocessor(const AliMUONTrackerPreprocessor& rhs);
36   /// Not implemented
37   AliMUONTrackerPreprocessor& operator=(const AliMUONTrackerPreprocessor& rhs);
38   
39 private:
40   AliMUONPedestalSubprocessor* fPedestalSubprocessor; ///< Pedestal subprocessor
41   AliMUONGMSSubprocessor*      fGMSSubprocessor;      ///< GMS subprocessor
42   AliMUONHVSubprocessor*       fHVSubprocessor;       ///< HV subprocessor
43   AliMUONGainSubprocessor* fGainSubprocessor; ///< Gain subprocessor
44   AliMUONOccupancySubprocessor* fOccupancySubprocessor; ///< Occupancy subprocessor
45   
46   ClassDef(AliMUONTrackerPreprocessor,3) // MUON Tracker Shuttle preprocessor
47 };
48
49 #endif