X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=blobdiff_plain;f=STEER%2FAliReconstruction.h;h=507c754300f239f968d0cf1aa3e9acba77fcd130;hp=5570c519d6c8476bae9570429cafd2b42b52740a;hb=4453d90074bfdad23ca5dc949656684bd3a97b63;hpb=aa3c69a96319f9a9bc545d3a738b33df17574530 diff --git a/STEER/AliReconstruction.h b/STEER/AliReconstruction.h index 5570c519d6c..507c754300f 100644 --- a/STEER/AliReconstruction.h +++ b/STEER/AliReconstruction.h @@ -17,7 +17,7 @@ /////////////////////////////////////////////////////////////////////////////// -#include +#include #include #include @@ -26,31 +26,49 @@ class AliRunLoader; class AliRawReader; class AliLoader; class AliTracker; +class AliMagF; class AliVertexer; +class AliTrackleter; class AliESDVertex; class AliESDEvent; +class AliESDfriend; +class AliESDpid; +class AliVertexerTracks; class TFile; class TTree; class TList; -class AliQADataMaker; - -class AliReconstruction: public TNamed { +class AliQAManager; +class TMap; +class AliRecoParam; +class AliDetectorRecoParam; +class AliRunInfo; +class AliGRPObject; +class THashTable; +class AliTriggerRunScalers; +class AliCTPTimeParams; + +#include "AliQAv1.h" +#include "AliEventInfo.h" +#include "AliRecoParam.h" + +class AliReconstruction: public TSelector { public: - AliReconstruction(const char* gAliceFilename = "galice.root", - const char* name = "AliReconstruction", - const char* title = "reconstruction"); - AliReconstruction(const AliReconstruction& rec); - AliReconstruction& operator = (const AliReconstruction& rec); + AliReconstruction(const char* gAliceFilename = "galice.root"); virtual ~AliReconstruction(); void SetGAliceFile(const char* fileName); - void SetInput(const char* input) {fInput = input;}; + void SetInput(const char* input); + void SetOutput(const char* output); + void SetEquipmentIdMap(const char *mapFile) {fEquipIdMap = mapFile;}; void SetEventRange(Int_t firstEvent = 0, Int_t lastEvent = -1) {fFirstEvent = firstEvent; fLastEvent = lastEvent;}; void SetNumberOfEventsPerFile(UInt_t nEvents) {fNumberOfEventsPerFile = nEvents;}; + void SetFractionFriends(Double32_t frac = 0.04) + {fFractionFriends = frac;}; void SetOption(const char* detector, const char* option); + void SetRecoParam(const char* detector, AliDetectorRecoParam *par); void SetRunLocalReconstruction(const char* detectors) { fRunLocalReconstruction = detectors;}; @@ -66,25 +84,24 @@ public: void SetLoadAlignFromCDB(Bool_t load) {fLoadAlignFromCDB = load;}; void SetLoadAlignData(const char* detectors) {fLoadAlignData = detectors;}; - void SetESDParLocation(const char *c){fESDPar = c;} - TNamed *CopyFileToTNamed(TString fPath,TString fName); - void TNamedToFile(TTree* fTree, TString fName); //*** Global reconstruction flag setters - void SetUniformFieldTracking(Bool_t flag=kTRUE){fUniformField=flag;} + void SetRunMultFinder(Bool_t flag=kTRUE) {fRunMultFinder=flag;}; void SetRunVertexFinder(Bool_t flag=kTRUE) {fRunVertexFinder=flag;}; + void SetRunVertexFinderTracks(Bool_t flag=kTRUE) {fRunVertexFinderTracks=flag;}; void SetRunHLTTracking(Bool_t flag=kTRUE) {fRunHLTTracking=flag;}; void SetRunV0Finder(Bool_t flag=kTRUE) {fRunV0Finder=flag;}; void SetRunCascadeFinder(Bool_t flag=kTRUE) {fRunCascadeFinder=flag;}; void SetStopOnError(Bool_t flag=kTRUE) {fStopOnError=flag;} void SetWriteAlignmentData(Bool_t flag=kTRUE){fWriteAlignmentData=flag;} void SetWriteESDfriend(Bool_t flag=kTRUE){fWriteESDfriend=flag;} - void SetWriteAOD(Bool_t flag=kTRUE){fWriteAOD=flag;} void SetFillTriggerESD(Bool_t flag=kTRUE){fFillTriggerESD=flag;} + void SetDiamondProfileSPD(AliESDVertex *dp) {fDiamondProfileSPD=dp;} void SetDiamondProfile(AliESDVertex *dp) {fDiamondProfile=dp;} - void SetMeanVertexConstraint(Bool_t flag=kTRUE){fMeanVertexConstraint=flag;} + void SetDiamondProfileTPC(AliESDVertex *dp) {fDiamondProfileTPC=dp;} void SetCleanESD(Bool_t flag=kTRUE){fCleanESD=flag;} + void SetUseHLTData(const char* detectors){fUseHLTData=detectors;} void SetV0DCAmax(Float_t d) {fV0DCAmax=d;} void SetV0CsPmin(Float_t d) {fV0CsPmin=d;} void SetDmax(Float_t d) {fDmax=d;} @@ -93,9 +110,8 @@ public: Float_t GetV0CsPmin() const {return fV0CsPmin;} Float_t GetDmax() const {return fDmax;} Float_t GetZmax() const {return fZmax;} - - void SetCheckPointLevel(Int_t checkPointLevel) - {fCheckPointLevel = checkPointLevel;} + // + Bool_t IsRunMultFinder() const {return fRunMultFinder;} // CDB storage activation void SetDefaultStorage(const char* uri); @@ -107,42 +123,88 @@ public: {fAlignObjArray = array; fLoadAlignFromCDB = kFALSE;} + virtual Int_t Version() const {return 2;} + virtual void Begin(TTree*); + virtual void SlaveBegin(TTree*); + virtual void Init(TTree *tree); + virtual Bool_t Process(Long64_t entry); + virtual Bool_t ProcessEvent(Int_t iEvent); + virtual void SlaveTerminate(); + virtual void Terminate(); virtual Bool_t Run(const char* input = NULL); + void Abort(const char *method, EAbort what); + virtual void SetOption(const char* option) { + TSelector::SetOption(option); + } - // AOD creation - void ESDFile2AODFile(TFile* esdFile, TFile* aodFile); + // Trackers + AliTracker* GetTracker(Int_t idx) const { return fTracker[idx]; } + Bool_t CreateTrackers(const TString& detectors); + void ImportRunLoader(AliRunLoader* rl) { fRunLoader = rl; } // Quality Assurance - virtual Bool_t RunQA(const char* detectors, AliESDEvent *& esd); - void SetQACycles(const char * detector, const Int_t cycles) { fQACycles[GetDetIndex(detector)] = cycles ; } - void SetRunQA(Bool_t flag=kTRUE) {fRunQA = flag ;} + void SetQACycles(AliQAv1::DETECTORINDEX_t det, Int_t cycles) { fQACycles[det] = cycles ; } + void SetQAWriteExpert(AliQAv1::DETECTORINDEX_t det) { fQAWriteExpert[det] = kTRUE ; } + Bool_t SetRunQA(TString detAndAction="ALL:ALL") ; void SetRunGlobalQA(Bool_t flag=kTRUE){fRunGlobalQA = flag;} - void SetInLoopQA(Bool_t flag=kTRUE) {fInLoopQA = flag;} + void SetQARefDefaultStorage(const char* uri); + void InitQA(); + void MergeQA(const char *fileName = NULL); + void SetWriteQAExpert() { fWriteQAExpertData = kTRUE ; } + Bool_t IsRunQA() const { return fRunQA ; } + Bool_t IsRunGlobalQA() const { return fRunGlobalQA ; } + Bool_t IsInTasks(AliQAv1::TASKINDEX_t tsk) { return fQATasks.Contains(Form("%d", tsk)) ; } + + // Plane Efficiency Evaluation + void SetRunPlaneEff(Bool_t flag=kFALSE) {fRunPlaneEff = flag;} + + enum { + kNDetectors = 15 // number of detectors + }; + static Int_t GetDetIndex(const char * detector); + +protected: + virtual Bool_t ProcessEvent(void* event); + void InitRun(const char* input); + // Functions needed to select events for which we store the ESD friends + Bool_t IsHighPt() const; + Bool_t IsCosmicOrCalibSpecie() const; + void WriteESDfriend(); private: - void InitCDB(); - void SetCDBLock(); + AliReconstruction(const AliReconstruction& rec); + AliReconstruction& operator = (const AliReconstruction& rec); + + void InitRawReader(const char* input); + void InitCDB(); + Bool_t InitGRP(); + void SetCDBLock(); Bool_t SetRunNumberFromData(); - Bool_t RunLocalReconstruction(const TString& detectors); + Bool_t LoadCDB(); + Bool_t LoadTriggerScalersCDB(); + Bool_t LoadCTPTimeParamsCDB(); + Bool_t ReadIntensityInfoCDB(); Bool_t RunLocalEventReconstruction(const TString& detectors); Bool_t RunVertexFinder(AliESDEvent*& esd); Bool_t RunHLTTracking(AliESDEvent*& esd); Bool_t RunMuonTracking(AliESDEvent*& esd); - Bool_t RunTracking(AliESDEvent*& esd); + Bool_t RunSPDTrackleting(AliESDEvent*& esd); + Bool_t RunMultFinder(AliESDEvent*& esd); + Bool_t RunTracking(AliESDEvent*& esd, AliESDpid &PID); Bool_t CleanESD(AliESDEvent *esd); Bool_t FillESD(AliESDEvent*& esd, const TString& detectors); Bool_t FillTriggerESD(AliESDEvent*& esd); + Bool_t FillTriggerScalers(AliESDEvent*& esd); Bool_t FillRawEventHeaderESD(AliESDEvent*& esd); Bool_t IsSelected(TString detName, TString& detectors) const; Bool_t InitRunLoader(); AliReconstructor* GetReconstructor(Int_t iDet); - Bool_t CreateVertexer(); - Bool_t CreateTrackers(const TString& detectors); - void CleanUp(TFile* file = NULL, TFile* fileOld = NULL); + AliVertexer* CreateVertexer(); + AliTrackleter* CreateMultFinder(); + void CleanUp(); - Bool_t ReadESD(AliESDEvent*& esd, const char* recStep) const; - void WriteESD(AliESDEvent* esd, const char* recStep) const; + Bool_t ParseOutput(); //==========================================// void WriteAlignmentData(AliESDEvent* esd); @@ -150,22 +212,31 @@ private: void FillRawDataErrorLog(Int_t iEvent, AliESDEvent* esd); //Quality Assurance - Int_t GetDetIndex(const char * detector); - AliQADataMaker* GetQADataMaker(Int_t iDet); - const Int_t GetQACycles(const char * detector) { return fQACycles[GetDetIndex(detector)] ; } - void CheckQA() ; + // void CheckQA() ; + + // Plane Efficiency evaluation + Bool_t FinishPlaneEff(); //ultimate tasks related to Plane Eff. evaluation + Bool_t InitPlaneEff(); // initialize what is needed for Plane Eff. evaluation + + Bool_t InitAliEVE(); + void RunAliEVE(); + + Bool_t InitRecoParams(); // init the array with the reconstruciton parameters + Bool_t GetEventInfo(); // fill the event info inside the event loop + + const char *MatchDetectorList(const char *detectorList, UInt_t detectorMask); //*** Global reconstruction flags ******************* - Bool_t fUniformField; // uniform field tracking flag Bool_t fRunVertexFinder; // run the vertex finder + Bool_t fRunVertexFinderTracks; // run the vertex finder with tracks Bool_t fRunHLTTracking; // run the HLT tracking Bool_t fRunMuonTracking; // run the HLT tracking Bool_t fRunV0Finder; // run the ESD V0 finder Bool_t fRunCascadeFinder; // run the ESD cascade finder + Bool_t fRunMultFinder; // run the trackleter for ITS clusters Bool_t fStopOnError; // stop or continue on errors Bool_t fWriteAlignmentData; // write track space-points flag Bool_t fWriteESDfriend; // write ESD friend flag - Bool_t fWriteAOD; // write AOD flag Bool_t fFillTriggerESD; // fill trigger info into ESD //*** Clean ESD flag and parameters ******************* @@ -178,49 +249,93 @@ private: TString fRunLocalReconstruction; // run the local reconstruction for these detectors TString fRunTracking; // run the tracking for these detectors TString fFillESD; // fill ESD for these detectors + TString fLoadCDB; // prefetch CDB entries and init reco-params for these detectors TString fUseTrackingErrorsForAlignment; // for these detectors TString fGAliceFileName; // name of the galice file - TString fInput; // name of input file or directory + TString fRawInput; // name of input raw-data file or directory + TString fESDOutput; //! name of output ESD file + TString fProofOutputFileName;//! name of output file in PROOF mode + TString fProofOutputLocation;//! output location in PROOF mode + Bool_t fProofOutputDataset; //! keep output file in PROOF mode in dataset or merge + TString fProofOutputArchive; //! list of file to be kept in output zip archive in PROOF mode TString fEquipIdMap; // name of file with equipment id map Int_t fFirstEvent; // index of first event to be reconstr. Int_t fLastEvent; // index of last event to be reconstr. UInt_t fNumberOfEventsPerFile; // number of events per file in case of raw-data reconstruction - Int_t fCheckPointLevel; // level of ESD check points + Double32_t fFractionFriends; // fraction of ESD friends to be stored TObjArray fOptions; // options for reconstructor objects Bool_t fLoadAlignFromCDB; // Load alignment data from CDB and apply it to geometry or not TString fLoadAlignData; // Load alignment data from CDB for these detectors - TString fESDPar; // String where the esd.par is stored, will be attached to the tree - - + TString fUseHLTData; // Detectors for which the HLT data is used as input + AliRunInfo* fRunInfo; // an object which contains essential global conditions information + AliEventInfo fEventInfo; // an object which contains essential event information + AliTriggerRunScalers* fRunScalers; // an object which contains the trigger counters for xsection + AliCTPTimeParams* fCTPTimeParams; // an object which contains the trigger delays + AliCTPTimeParams* fCTPTimeAlign; // an object which contains the CTP (mis)alignment data AliRunLoader* fRunLoader; //! current run loader object AliRawReader* fRawReader; //! current raw data reader - - static const Int_t fgkNDetectors = 15; //! number of detectors - static const char* fgkDetectorName[fgkNDetectors]; //! names of detectors - AliReconstructor* fReconstructor[fgkNDetectors]; //! array of reconstructor objects - AliLoader* fLoader[fgkNDetectors]; //! detector loaders - AliVertexer* fVertexer; //! vertexer for ITS - AliTracker* fTracker[fgkNDetectors]; //! trackers - AliESDVertex* fDiamondProfile; // (x,y) diamond profile for AliVertexerTracks - Bool_t fMeanVertexConstraint; // use fDiamondProfile in AliVertexerTracks - - TList* fGRPList; // TList from the GRP/GRP/Data CDB folder - - TObjArray* fAlignObjArray; // array with the alignment objects to be applied to the geometry - - TString fCDBUri; // Uri of the default CDB storage - TObjArray fSpecCDBUri; // Array with detector specific CDB storages + AliRawReader* fParentRawReader; //! parent raw data reader in case of AliRawReaderHLT + + static const char* fgkDetectorName[kNDetectors]; //! names of detectors + AliReconstructor* fReconstructor[kNDetectors]; //! array of reconstructor objects + AliRecoParam fRecoParam; // container for the reco-param objects for detectors + AliLoader* fLoader[kNDetectors]; //! detector loaders + AliTracker* fTracker[kNDetectors]; //! trackers + AliTracker* fSPDTrackleter; //! trackleter [for SPD Plane Efficiency purposes] + AliESDVertex* fDiamondProfileSPD; // (x,y) diamond profile from SPD for AliITSVertexer3D(Z) + AliESDVertex* fDiamondProfile; // (x,y) diamond profile for AliVertexerTracks (ITS+TPC) + AliESDVertex* fDiamondProfileTPC; // (x,y) diamond profile from TPC for AliVertexerTracks + THashTable* fListOfCosmicTriggers; // list of cosmic triggers as defined by trigger coordination + + AliGRPObject* fGRPData; // Data from the GRP/GRP/Data CDB folder + + TObjArray* fAlignObjArray; //! array with the alignment objects to be applied to the geometry + + TString fCDBUri; //! Uri of the default CDB storage + TString fQARefUri; //! Uri of the default QA reference storage + TObjArray fSpecCDBUri; //! Array with detector specific CDB storages Bool_t fInitCDBCalled; //! flag to check if CDB storages are already initialized Bool_t fSetRunNumberFromDataCalled; //! flag to check if run number is already loaded from run loader //Quality Assurance - AliQADataMaker *fQADataMaker[fgkNDetectors+1]; //! array of QA data makers - Int_t fQACycles[fgkNDetectors];// # events over which QA data are accumulated - Bool_t fRunQA ; // Run QA flag - Bool_t fRunGlobalQA; // Run global QA flag - Bool_t fInLoopQA; // In-loop QA flag + Int_t fQACycles[ AliQAv1::kNDET]; // # events over which QA data are accumulated + Bool_t fQAWriteExpert[AliQAv1::kNDET]; // Flag to save or not expert QA data + TString fQADetectors ; // list of detectors to be QA'ed + TString fQATasks ; // list of QA tasks to be performed + Bool_t fRunQA ; // Run QA flag + Bool_t fRunGlobalQA; // Run global QA flag + Bool_t fSameQACycle; //! open a new QA data file or not + Bool_t fInitQACalled; //! control of QA intialisation + Bool_t fWriteQAExpertData ; //! decides wheter or not to write experts QA data; true by default + + // Plane Efficiency Evaluation + Bool_t fRunPlaneEff ; // Evaluate Plane Efficiency + + // New members needed in order to split Run method + // into InitRun,RunEvent,FinishRun methods + AliESDEvent* fesd; //! Pointer to the ESD event object + AliESDEvent* fhltesd; //! Pointer to the HLT ESD event object + AliESDfriend* fesdf; //! Pointer to the ESD friend object + TFile* ffile; //! Pointer to the ESD file + TFile* ffileF; //! Pointer to the ESD friend file + TTree* ftree; //! Pointer to the ESD tree + TTree* ftreeF; //! Pointer to the ESD friend tree + TTree* fhlttree; //! Pointer to the HLT ESD tree + AliVertexerTracks* ftVertexer; //! Pointer to the vertexer based on ESD tracks + Bool_t fIsNewRunLoader; // galice.root created from scratch (real raw data case) + Bool_t fRunAliEVE; // Run AliEVE or not + Double_t fBeamInt[2][2]; //! mean beam intensities from AliLHCData + + TTree* fChain; //! The raw-data chain in case of AliRawReaderChain + + // Counters used in WriteESDfriend() + Int_t fNall; //! Number of reconstructed events + Int_t fNspecie; //! Number of events, selected by IsCosmicOrCalibSpecie + Int_t fSspecie; //! Number of events, sampled from fNspecie + Int_t fNhighPt; //! Number of events, selected by IsHighPt + Int_t fShighPt; //! Number of events, sampled from fNhighPt - ClassDef(AliReconstruction, 19) // class for running the reconstruction + ClassDef(AliReconstruction, 39) // class for running the reconstruction }; #endif