]>
Commit | Line | Data |
---|---|---|
04aa997f | 1 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * |
2 | * See cxx source for full Copyright notice */ | |
3 | ||
4 | // $Id$ | |
5 | ||
6 | /// \ingroup shuttle | |
7 | /// \class AliMUONGMSSubprocessor | |
8 | /// \brief The shuttle subprocessor for GMS data | |
9 | /// | |
10 | /// \author Ivana Hrivnacova, IPN Orsay | |
11 | ||
7e4d63b3 | 12 | #ifndef ALI_MUONGMS_SUBPROCESSOR_H |
13 | #define ALI_MUONGMS_SUBPROCESSOR_H | |
04aa997f | 14 | |
15 | #ifndef ALIMUONVSUBPROCESSOR_H | |
16 | # include "AliMUONVSubprocessor.h" | |
17 | #endif | |
18 | ||
19 | #ifndef ALI_MUON_GEOMETRY_TRANSFORMER_H | |
20 | #include "AliMUONGeometryTransformer.h" | |
21 | #endif | |
22 | ||
23 | class AliMUONPreprocessor; | |
24 | ||
25 | class AliMUONGMSSubprocessor : public AliMUONVSubprocessor | |
26 | { | |
27 | public: | |
28 | AliMUONGMSSubprocessor(AliMUONPreprocessor* master); | |
29 | virtual ~AliMUONGMSSubprocessor(); | |
30 | ||
31 | // methods | |
789260b4 | 32 | virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime); |
04aa997f | 33 | virtual UInt_t Process(TMap* /*dcsAliasMap*/); |
34 | ||
35 | private: | |
71a2d3aa | 36 | /// Not implemented |
6c27c3a9 | 37 | AliMUONGMSSubprocessor(const AliMUONGMSSubprocessor&); |
71a2d3aa | 38 | /// Not implemented |
6c27c3a9 | 39 | AliMUONGMSSubprocessor& operator=(const AliMUONGMSSubprocessor&); |
968ce98e | 40 | |
41 | UInt_t ProcessFile(const TString& filename); | |
42 | ||
04aa997f | 43 | // static data members |
06ca6d7b | 44 | static const Int_t fgkSystem; ///< The data system |
45 | static const TString fgkDataId; ///< The data Id | |
46 | static const TString fgkMatrixArrayName; ///< The fixed matrix array name | |
04aa997f | 47 | |
48 | // data members | |
789260b4 | 49 | AliMUONGeometryTransformer* fTransformer; ///< Geometry transformer |
04aa997f | 50 | |
71a2d3aa | 51 | ClassDef(AliMUONGMSSubprocessor, 1) // Shuttle sub-processor for GMS |
04aa997f | 52 | }; |
53 | ||
7e4d63b3 | 54 | #endif //ALI_MUONGMS_SUBPROCESSOR_H |