]> git.uio.no Git - u/mrichter/AliRoot.git/blame_incremental - MUON/AliMUONTrackerPreprocessor.h
CSP registers depend of FEE firmware, not RCU firmware
[u/mrichter/AliRoot.git] / MUON / AliMUONTrackerPreprocessor.h
... / ...
CommitLineData
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
17class AliMUONPedestalSubprocessor;
18class AliMUONGMSSubprocessor;
19class AliMUONHVSubprocessor;
20class AliMUONGainSubprocessor;
21
22class TObjArray;
23
24class AliMUONTrackerPreprocessor : public AliMUONPreprocessor
25{
26public:
27 AliMUONTrackerPreprocessor(AliShuttleInterface* shuttle);
28 virtual ~AliMUONTrackerPreprocessor();
29
30 virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
31
32private:
33 /// Not implemented
34 AliMUONTrackerPreprocessor(const AliMUONTrackerPreprocessor& rhs);
35 /// Not implemented
36 AliMUONTrackerPreprocessor& operator=(const AliMUONTrackerPreprocessor& rhs);
37
38private:
39 AliMUONPedestalSubprocessor* fPedestalSubprocessor; ///< Pedestal subprocessor
40 AliMUONGMSSubprocessor* fGMSSubprocessor; ///< GMS subprocessor
41 AliMUONHVSubprocessor* fHVSubprocessor; ///< HV subprocessor
42 AliMUONGainSubprocessor* fGainSubprocessor; ///< Gain subprocessor
43
44 ClassDef(AliMUONTrackerPreprocessor,2) // MUON Tracker Shuttle preprocessor
45};
46
47#endif