]> git.uio.no Git - u/mrichter/AliRoot.git/blob - MUON/AliMUONPreprocessor.h
Adding MUONChamberMaterialBudget.C:
[u/mrichter/AliRoot.git] / MUON / AliMUONPreprocessor.h
1 #ifndef ALIMUONPREPROCESSOR_H
2 #define ALIMUONPREPROCESSOR_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 AliMUONPreprocessor
11 /// \brief Shuttle preprocessor for MUON subsystems (TRK and TRG)
12 /// 
13 //  Author Laurent Aphecetche
14
15 #ifndef ALI_PREPROCESSOR_H
16 #  include "AliPreprocessor.h"
17 #endif
18
19 class AliMUONVSubprocessor;
20 class TObjArray;
21
22 class AliMUONPreprocessor : public AliPreprocessor
23 {
24 public:
25   virtual void Initialize(Int_t run, UInt_t startTime, UInt_t endTime);
26   virtual UInt_t Process(TMap* dcsAliasMap);
27   virtual void Print(Option_t* opt="") const;
28
29   /// Return info whether the current subprocessor(s) needs DCS or not  
30   virtual Bool_t ProcessDCS() { return fProcessDCS; }
31
32   /// Publish AliPreprocessor::Log function
33   void Log(const char* message) { AliPreprocessor::Log(message); }
34   
35   /// Publish AliPreprocessor::GetFileSources function
36   TList* GetFileSources(Int_t system, const char* id) 
37   { return AliPreprocessor::GetFileSources(system,id); }
38
39   /// Publish AliPreprocessor::Store function
40   Bool_t Store(const char* pathLevel2, const char* pathLevel3, TObject* object,
41                AliCDBMetaData* metaData, 
42                Int_t validityStart = 0, Bool_t validityInfinite = kFALSE)
43   {
44     return AliPreprocessor::Store(pathLevel2,pathLevel3,object,metaData,
45                                   validityStart,validityInfinite);
46   }
47   
48   /// Publish AliPreprocessor::GetFile function
49   const char* GetFile(Int_t system, const char* id, const char* source)
50   {
51     return AliPreprocessor::GetFile(system,id,source);
52   }  
53
54   /// Publish AliPreprocessor::GetFromOCDB function
55     AliCDBEntry* GetFromOCDB(const char* pathLevel2, const char* pathLevel3) {
56       return AliPreprocessor::GetFromOCDB(pathLevel2,pathLevel3);      
57     }
58
59   /// Whether we can be used (e.g. whether we were properly initialized)
60   Bool_t IsValid() const { return fIsValid; }
61   
62   /// Mark as invalid
63   void Invalidate() { fIsValid = kFALSE; }
64   
65   /// Whether we should do something or not
66   Bool_t IsApplicable() { return fIsApplicable; }
67   
68   /// Return log book parameter
69   TString GetLogBookParam(const char* parname)
70   { return TString(AliPreprocessor::GetRunParameter(parname)); }
71   
72 protected:
73   AliMUONPreprocessor(const char* detName, AliShuttleInterface* shuttle);
74   virtual ~AliMUONPreprocessor();
75   
76   void Add(AliMUONVSubprocessor* subProcessor, Bool_t processDCS=kFALSE); 
77   void ClearSubprocessors();
78   
79   Bool_t fIsValid; //!< whether we were correctly initialized
80   Bool_t fIsApplicable; //!< whether we have something to do
81   
82 private:
83   /// Not implemented
84   AliMUONPreprocessor(const AliMUONPreprocessor& rhs);
85   /// Not implemented
86   AliMUONPreprocessor& operator=(const AliMUONPreprocessor& rhs);
87   
88   AliMUONVSubprocessor* Subprocessor(Int_t i) const;
89   
90 private:
91
92   TObjArray* fSubprocessors; //!< sub processors to execute
93   Bool_t fProcessDCS; //!< whether the current subprocessor(s) needs DCS or not
94
95   ClassDef(AliMUONPreprocessor,4) // MUON Shuttle preprocessor
96 };
97
98 #endif