]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONTrackerPreprocessor.h
3e30e3efe87287118bb0fbcb4670ba3fb7241075
[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
21 class TObjArray;
22
23 class AliMUONTrackerPreprocessor : public AliMUONPreprocessor
24 {
25 public:
26   AliMUONTrackerPreprocessor(AliShuttleInterface* shuttle);
27   virtual ~AliMUONTrackerPreprocessor();
28   
29   virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
30
31 private:
32   AliMUONTrackerPreprocessor(const AliMUONTrackerPreprocessor& rhs);
33   AliMUONTrackerPreprocessor& operator=(const AliMUONTrackerPreprocessor& rhs);
34   
35 private:
36   AliMUONPedestalSubprocessor* fPedestalSubprocessor; ///< Pedestal subprocessor
37   AliMUONGMSSubprocessor*      fGMSSubprocessor;      ///< GMS subprocessor
38   AliMUONHVSubprocessor*       fHVSubprocessor;       ///< HV subprocessor
39
40   ClassDef(AliMUONTrackerPreprocessor,1) // MUON Tracker Shuttle preprocessor
41 };
42
43 #endif