]> git.uio.no Git - u/mrichter/AliRoot.git/blame - MUON/AliMUONPreprocessor.h
Removed usage of removed class AliMpManuList
[u/mrichter/AliRoot.git] / MUON / AliMUONPreprocessor.h
CommitLineData
ea199e33 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///
78649106 13// Author Laurent Aphecetche
ea199e33 14
15#ifndef ALI_PREPROCESSOR_H
16# include "AliPreprocessor.h"
17#endif
18
19class AliMUONVSubprocessor;
20class TObjArray;
21
22class AliMUONPreprocessor : public AliPreprocessor
23{
6c7a0c0f 24public:
ea199e33 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;
4bc52c93 28
29 /// Return info whether the current subprocessor(s) needs DCS or not
d489129d 30 virtual Bool_t ProcessDCS() { return fProcessDCS; }
31
71a2d3aa 32 /// Publish AliPreprocessor::Log function
57e176c0 33 void Log(const char* message) { AliPreprocessor::Log(message); }
34
71a2d3aa 35 /// Publish AliPreprocessor::GetFileSources function
ea199e33 36 TList* GetFileSources(Int_t system, const char* id)
37 { return AliPreprocessor::GetFileSources(system,id); }
38
71a2d3aa 39 /// Publish AliPreprocessor::Store function
d489129d 40 Bool_t Store(const char* pathLevel2, const char* pathLevel3, TObject* object,
ea199e33 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
71a2d3aa 48 /// Publish AliPreprocessor::GetFile function
ea199e33 49 const char* GetFile(Int_t system, const char* id, const char* source)
50 {
51 return AliPreprocessor::GetFile(system,id,source);
52 }
53
c41ce74d 54 /// Whether we can be used (e.g. whether we were properly initialized)
55 Bool_t IsValid() const { return fIsValid; }
56
eca96915 57protected:
58 AliMUONPreprocessor(const char* detName, AliShuttleInterface* shuttle);
59 virtual ~AliMUONPreprocessor();
60
d489129d 61 void Add(AliMUONVSubprocessor* subProcessor, Bool_t processDCS=kFALSE);
eca96915 62 void ClearSubprocessors();
63
ea199e33 64private:
71a2d3aa 65 /// Not implemented
ea199e33 66 AliMUONPreprocessor(const AliMUONPreprocessor& rhs);
71a2d3aa 67 /// Not implemented
ea199e33 68 AliMUONPreprocessor& operator=(const AliMUONPreprocessor& rhs);
69
70 AliMUONVSubprocessor* Subprocessor(Int_t i) const;
71
72private:
fee1d02b 73
71a2d3aa 74 TObjArray* fSubprocessors; //!< sub processors to execute
d489129d 75 Bool_t fProcessDCS; //!< whether the current subprocessor(s) needs DCS or not
c41ce74d 76 Bool_t fIsValid; //!< whether we were correctly initialized
ea199e33 77
c41ce74d 78 ClassDef(AliMUONPreprocessor,3) // MUON Shuttle preprocessor
ea199e33 79};
80
81#endif