]>
Commit | Line | Data |
---|---|---|
312e6f8d | 1 | #ifndef ALIQADATAMAKERSTEER_H |
2 | #define ALIQADATAMAKERSTEER_H | |
3 | /* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * | |
4 | * See cxx source for full Copyright notice */ | |
5 | ||
6 | /* $Id$ */ | |
7 | ||
8 | /////////////////////////////////////////////////////////////////////////////// | |
9 | // // | |
10 | // class for running the QA makers // | |
11 | // // | |
12 | // AliQADataMakerSteer qas; // | |
13 | // qas.Run(AliQA::kRAWS, rawROOTFileName); // | |
14 | // qas.Run(AliQA::kHITS); // | |
15 | // qas.Run(AliQA::kSDIGITS); // | |
16 | // qas.Run(AliQA::kDIGITS); // | |
17 | // qas.Run(AliQA::kRECPOINTS); // | |
18 | // qas.Run(AliQA::kESDS); // | |
19 | // // | |
20 | /////////////////////////////////////////////////////////////////////////////// | |
21 | ||
22 | #include <TNamed.h> | |
23 | #include "AliQA.h" | |
24 | #include "AliLoader.h" | |
940d8e5f | 25 | #include "AliRecoParam.h" |
312e6f8d | 26 | |
940d8e5f | 27 | class AliESDEvent ; |
28 | class AliDetectorRecoParam ; | |
29 | class AliESDEvent ; | |
312e6f8d | 30 | class AliQADataMaker ; |
4ecde5fc | 31 | class AliRawReader ; |
312e6f8d | 32 | class AliRunLoader ; |
a2b64fbd | 33 | class AliCorrQADataMakerRec ; |
312e6f8d | 34 | |
35 | class AliQADataMakerSteer: public TNamed { | |
36 | public: | |
30bbd491 | 37 | AliQADataMakerSteer(char * mode, const char* gAliceFilename = "galice.root", |
312e6f8d | 38 | const char * name = "AliQADataMakerSteer", |
39 | const char * title = "QA makers") ; | |
40 | AliQADataMakerSteer(const AliQADataMakerSteer & qas) ; | |
41 | AliQADataMakerSteer & operator = (const AliQADataMakerSteer & qas) ; | |
42 | virtual ~AliQADataMakerSteer() ; | |
940d8e5f | 43 | void EndOfCycle(TObjArray * detArray=0x0) ; |
7ce961eb | 44 | UInt_t GetCurrentEvent() const { return fCurrentEvent ; } |
45 | TObjArray * GetFromOCDB(AliQA::DETECTORINDEX_t det, AliQA::TASKINDEX_t task, const char * year) const ; | |
30bbd491 | 46 | AliQADataMaker * GetQADataMaker(const Int_t iDet) ; |
930e6e3e | 47 | void Increment() ; |
48 | void InitQADataMaker(UInt_t run, const AliRecoParam & par, TObjArray * detArray=0x0) ; | |
0acdb2bb | 49 | Bool_t Merge(const Int_t runNumber = -1 ) const ; |
7ce961eb | 50 | void Reset(const Bool_t sameCycle = kFALSE) ; |
940d8e5f | 51 | TString Run(const char * detectors, const AliQA::TASKINDEX_t taskIndex=AliQA::kNULLTASKINDEX, Bool_t const sameCycle = kFALSE, const char * fileName = NULL) ; |
7ce961eb | 52 | TString Run(const char * detectors, AliRawReader * rawReader, Bool_t const sameCycle = kFALSE) ; |
53 | TString Run(const char * detectors, const char * filename, Bool_t const sameCycle = kFALSE) ; | |
940d8e5f | 54 | void RunOneEvent(AliRawReader * rawReader) ; |
0acdb2bb | 55 | void RunOneEventInOneDetector(Int_t det, TTree * tree) ; |
56 | void RunOneEvent(AliESDEvent *& esd) ; | |
147c1c84 | 57 | Bool_t Save2OCDB(const Int_t runNumber, const char * year = "08", const char * detectors = "ALL") const ; |
940d8e5f | 58 | void SetActiveDetectors(TString aDet) { fDetectors = aDet ; } |
7ce961eb | 59 | void SetCycleLength(const AliQA::DETECTORINDEX_t det, const Int_t cycle) { fQACycles[det] = cycle ; } |
252f8aa8 | 60 | void SetWriteExpert(const AliQA::DETECTORINDEX_t det) { fQAWriteExpert[det] = kTRUE ; } |
7ce961eb | 61 | void SetEventRange(UInt_t first, UInt_t last) { fFirstEvent = first ; fMaxEvents = last - first + 1 ; } |
62 | void SetFirsEvent(UInt_t first) { fFirstEvent = first ; } | |
63 | void SetMaxEvents(UInt_t max) { fMaxEvents = max ; } | |
64 | void SetNewCycle() { fCycleSame = kTRUE ; } | |
940d8e5f | 65 | void SetRecoParam(const char* detector, AliDetectorRecoParam *par) ; |
7ce961eb | 66 | void SetRunLoader(AliRunLoader * rl) { fRunLoader = rl ; } |
940d8e5f | 67 | void SetTasks(TString tasks) { fTasks = tasks ; } |
4edbc5bc | 68 | |
312e6f8d | 69 | private: |
a2b64fbd | 70 | Bool_t DoIt(const AliQA::TASKINDEX_t taskIndex) ; |
0acdb2bb | 71 | AliLoader * GetLoader(Int_t iDet) ; |
72 | const Int_t GetQACycles(const Int_t iDet) { return fQACycles[iDet] ; } | |
a2b64fbd | 73 | Bool_t Init(const AliQA::TASKINDEX_t taskIndex, const char * fileName = NULL) ; |
0acdb2bb | 74 | Bool_t InitRunLoader() ; |
75 | Bool_t IsSelected(const char * detName) ; | |
76 | Bool_t Finish(const AliQA::TASKINDEX_t taskIndex) ; | |
77 | Bool_t MergeData(const Int_t runNumber) const ; | |
78 | Bool_t MergeResults(const Int_t runNumber) const ; | |
79 | Bool_t SaveIt2OCDB(const Int_t runNumber, TFile * inputFile, const char * year) const ; | |
312e6f8d | 80 | |
81 | ||
a2b64fbd | 82 | UInt_t fCurrentEvent ; //! event counter |
83 | Bool_t fCycleSame ; //! true if 2 consecutive data making for a same detector | |
84 | TString fDetectors ; //! list of active detectors | |
85 | TString fDetectorsW ; //! list of active detectors with QA implemented | |
86 | AliESDEvent * fESD ; //! current ESD | |
87 | TTree * fESDTree ; //! current ESD Tree | |
88 | TString fGAliceFileName ; //! name of the galice file | |
89 | UInt_t fFirstEvent ; //! first event to process | |
90 | Int_t fMaxEvents ; //! number of events to process | |
91 | char * fMode ; //! sim or rec | |
92 | Long64_t fNumberOfEvents ; //! number of events in the run | |
93 | AliRecoParam fRecoParam; //! container for the reco-param objects for detectors | |
94 | UInt_t fRunNumber ; //! current run number | |
95 | AliRawReader * fRawReader ; //! current raw reader object | |
96 | Bool_t fRawReaderDelete ; //! tells if the rawReader has been created by this | |
97 | AliRunLoader * fRunLoader ; //! current run loader object | |
98 | TString fTasks ; //! list of QA tasks to be performed | |
99 | static const UInt_t fgkNDetectors = AliQA::kNDET ; //! number of detectors | |
100 | AliLoader * fLoader[fgkNDetectors]; //! array of detectors loader | |
101 | AliQADataMaker * fQADataMaker[fgkNDetectors]; //! array of QA data maker objects | |
102 | Int_t fQACycles[fgkNDetectors]; //! array of QA cycle length | |
252f8aa8 | 103 | Bool_t fQAWriteExpert[fgkNDetectors]; //! array of QA cycle length |
312e6f8d | 104 | |
105 | ClassDef(AliQADataMakerSteer, 0) // class for running the QA makers | |
106 | }; | |
107 | ||
108 | #endif |