From d0e4cb0c93545f23eef22cfa9d8fe6226500ee98 Mon Sep 17 00:00:00 2001 From: Adrian Weber <adrian.a.weber@physik.uni-giessen.de> Date: Tue, 12 Jul 2022 18:22:15 +0200 Subject: [PATCH] add updated rich analysis + macros --- macro/rich/mcbm/beamtime/.gitignore | 4 + .../create_alignment_2022_03_22_iron.C | 71 ++ .../create_alignment_2022_05_23_nickel.C | 77 ++ .../beamtime/run_reco_mcbm_real_wToF_mar22.C | 1040 +++++------------ .../run_reco_mcbm_real_wToF_mar22_iron.C | 791 +++++++++++++ ...run_reco_mcbm_real_wToF_mar22_iron_T0ref.C | 805 +++++++++++++ ...eco_mcbm_real_wToF_mar22_iron_T0refnoTof.C | 794 +++++++++++++ ...eco_mcbm_real_wToF_mar22_iron_Tofref_wT0.C | 801 +++++++++++++ ...un_reco_mcbm_real_wToF_may22_Nickel_Bmon.C | 806 +++++++++++++ .../beamtime/run_reco_mcbm_richOnly2022.C | 91 +- .../detectors/rich/mcbm/CbmRichMCbmQaReal.cxx | 366 +++++- reco/detectors/rich/mcbm/CbmRichMCbmQaReal.h | 20 +- .../rich/mcbm/CbmRichMCbmQaRichOnly.cxx | 14 +- .../rich/mcbm/CbmRichMCbmQaRichOnly.h | 13 + .../rich/mcbm/CbmRichMCbmSEDisplay.cxx | 15 +- .../rich/mcbm/CbmRichMCbmSEDisplay.h | 13 + 16 files changed, 4924 insertions(+), 797 deletions(-) create mode 100644 macro/rich/mcbm/beamtime/.gitignore create mode 100644 macro/rich/mcbm/beamtime/create_alignment_2022_03_22_iron.C create mode 100644 macro/rich/mcbm/beamtime/create_alignment_2022_05_23_nickel.C create mode 100644 macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron.C create mode 100644 macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_T0ref.C create mode 100644 macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_T0refnoTof.C create mode 100644 macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_Tofref_wT0.C create mode 100644 macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_may22_Nickel_Bmon.C diff --git a/macro/rich/mcbm/beamtime/.gitignore b/macro/rich/mcbm/beamtime/.gitignore new file mode 100644 index 0000000000..8da3adf420 --- /dev/null +++ b/macro/rich/mcbm/beamtime/.gitignore @@ -0,0 +1,4 @@ +FairRunInfo_reco* +reco_mcbm_*.root +/result_r*/ +tof*.root diff --git a/macro/rich/mcbm/beamtime/create_alignment_2022_03_22_iron.C b/macro/rich/mcbm/beamtime/create_alignment_2022_03_22_iron.C new file mode 100644 index 0000000000..68a0597c56 --- /dev/null +++ b/macro/rich/mcbm/beamtime/create_alignment_2022_03_22_iron.C @@ -0,0 +1,71 @@ +/* Copyright (C) 2022 UGiessen, Giessen + SPDX-License-Identifier: GPL-3.0-only + Authors: Florian Uhlig, Adrian Weber [committer]*/ + +#include <TFile.h> +#include <TGeoMatrix.h> + +#include <map> +#include <string> + +std::pair<std::string, TGeoHMatrix> AlignNode(std::string path, double shiftX, double shiftY, double shiftZ, + double rotX, double rotY, double rotZ) +{ + + TGeoHMatrix result; + result.SetDx(shiftX); + result.SetDy(shiftY); + result.SetDz(shiftZ); + result.RotateX(rotX); + result.RotateY(rotY); + result.RotateZ(rotZ); + + std::cout << "Alignment matrix for node " << path << " is: " << std::endl; + result.Print(); + std::cout << std::endl; + + return std::pair<std::string, TGeoHMatrix>(path, result); +} + + +int create_alignment_2022_03_22_iron() +{ + // Define the basic structure which needs to be filled with information + // This structure is stored in the output file and later passed to the + // FairRoot framework to do the (miss)alignment + std::map<std::string, TGeoHMatrix> matrices; + + // ---------------- STS ----------------------------// + // Align full STS + // matrices.insert(AlignNode("/cave_1/sts_v22c_mcbm_0", 0.275, -0.89, -.5, 0., 0., 0.)); + + // Align individual STS Units + // Station 1 + // Unit 0 + // matrices.insert(AlignNode("/cave_1/sts_v22c_mcbm_0/Station01_1/Ladder09_1", 0.0, 0.045, 0., 0., 0., 0.)); + // Unit 1 + // matrices.insert(AlignNode("/cave_1/sts_v22c_mcbm_0/Station01_1/Ladder09_2", -0.04, 0.06, 0., 0., 0., 0.)); + + // Station 2 + // Unit 2 + // matrices.insert(AlignNode("/cave_1/sts_v22c_mcbm_0/Station02_2/Ladder10_2", 0.0, -0.11, 0., 0., 0., 0.)); + + // ---------------- TOF ----------------------------// + // Align full Tof + // matrices.insert(AlignNode("/cave_1/tof_v21f_mcbm_0/tof_v21f_mcbmStand_1", 0.0, 0.0, 0.0, 0., 0.0, 0.)); + + // --------------- RICH ----------------------------// + // Align full Rich + matrices.insert(AlignNode("/cave_1/rich_v21b_mcbm_0/box_1", -10.0, 0.0, 0.0, 0., 0.0, 0.)); + + + // save matrices to disk + TFile* misalignmentMatrixRootfile = new TFile("AlignmentMatrices_mcbm_beam_2022_03_22_iron.root", "RECREATE"); + if (misalignmentMatrixRootfile->IsOpen()) { + gDirectory->WriteObject(&matrices, "MisalignMatrices"); + misalignmentMatrixRootfile->Write(); + misalignmentMatrixRootfile->Close(); + } + + return 0; +} diff --git a/macro/rich/mcbm/beamtime/create_alignment_2022_05_23_nickel.C b/macro/rich/mcbm/beamtime/create_alignment_2022_05_23_nickel.C new file mode 100644 index 0000000000..bafcba9511 --- /dev/null +++ b/macro/rich/mcbm/beamtime/create_alignment_2022_05_23_nickel.C @@ -0,0 +1,77 @@ +/* Copyright (C) 2022 UGiessen, Giessen + SPDX-License-Identifier: GPL-3.0-only + Authors: Florian Uhlig, Adrian Weber [committer]*/ + +#include <TFile.h> +#include <TGeoMatrix.h> + +#include <map> +#include <string> + +std::pair<std::string, TGeoHMatrix> AlignNode(std::string path, double shiftX, double shiftY, double shiftZ, + double rotX, double rotY, double rotZ) +{ + + TGeoHMatrix result; + result.SetDx(shiftX); + result.SetDy(shiftY); + result.SetDz(shiftZ); + result.RotateX(rotX); + result.RotateY(rotY); + result.RotateZ(rotZ); + + std::cout << "Alignment matrix for node " << path << " is: " << std::endl; + result.Print(); + std::cout << std::endl; + + return std::pair<std::string, TGeoHMatrix>(path, result); +} + + +int create_alignment_2022_05_23_nickel() +{ + // Define the basic structure which needs to be filled with information + // This structure is stored in the output file and later passed to the + // FairRoot framework to do the (miss)alignment + std::map<std::string, TGeoHMatrix> matrices; + + // ---------------- STS ----------------------------// + // Align full STS + // matrices.insert(AlignNode("/cave_1/sts_v22c_mcbm_0", 0.275, -0.89, -.5, 0., 0., 0.)); + + // Align individual STS Units + // Station 1 + // Unit 0 + // matrices.insert(AlignNode("/cave_1/sts_v22c_mcbm_0/Station01_1/Ladder09_1", 0.0, 0.045, 0., 0., 0., 0.)); + // Unit 1 + // matrices.insert(AlignNode("/cave_1/sts_v22c_mcbm_0/Station01_1/Ladder09_2", -0.04, 0.06, 0., 0., 0., 0.)); + + // Station 2 + // Unit 2 + // matrices.insert(AlignNode("/cave_1/sts_v22c_mcbm_0/Station02_2/Ladder10_2", 0.0, -0.11, 0., 0., 0., 0.)); + + // ---------------- TOF ----------------------------// + // Align full Tof + // matrices.insert(AlignNode("/cave_1/tof_v21f_mcbm_0/tof_v21f_mcbmStand_1", 0.0, 0.0, 0.0, 0., 0.0, 0.)); + + matrices.insert(AlignNode("/cave_1/tof_v21h_mcbm_0/tof_v21h_mcbmStand_1/module_0_0", 0.0, 0.0, 0.0, 0., 0.0, 0.)); + matrices.insert(AlignNode("/cave_1/tof_v21h_mcbm_0/tof_v21h_mcbmStand_1/module_0_1", 0.0, 0.0, 0.0, 0., 0.0, 0.)); + matrices.insert(AlignNode("/cave_1/tof_v21h_mcbm_0/tof_v21h_mcbmStand_1/module_0_2", 0.0, -10.0, 0.0, 0., 0.0, 0.)); + matrices.insert(AlignNode("/cave_1/tof_v21h_mcbm_0/tof_v21h_mcbmStand_1/module_0_3", 0.0, 0.0, 0.0, 0., 0.0, 0.)); + matrices.insert(AlignNode("/cave_1/tof_v21h_mcbm_0/tof_v21h_mcbmStand_1/module_0_4", 0.0, 0.0, 0.0, 0., 0.0, 0.)); + + // --------------- RICH ----------------------------// + // Align full Rich + matrices.insert(AlignNode("/cave_1/rich_v21c_mcbm_0/box_1", 0.0, 0.0, 0.0, 0., 0.0, 0.)); + + + // save matrices to disk + TFile* misalignmentMatrixRootfile = new TFile("AlignmentMatrices_mcbm_beam_2022_05_23_nickel.root", "RECREATE"); + if (misalignmentMatrixRootfile->IsOpen()) { + gDirectory->WriteObject(&matrices, "MisalignMatrices"); + misalignmentMatrixRootfile->Write(); + misalignmentMatrixRootfile->Close(); + } + + return 0; +} diff --git a/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22.C b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22.C index 6163b85936..4522e170fc 100644 --- a/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22.C +++ b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22.C @@ -2,16 +2,16 @@ SPDX-License-Identifier: GPL-3.0-only Authors: Florian Uhlig [committer] */ -void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmsource/macro/" - "run/data/", - const unsigned int runId = 1981, // used for the output folder - int nEvents = 10, const int taskId = 5) +void run_reco_mcbm_real_wToF_mar22(const unsigned int runId = 1981, // used for the output folder + int nEvents = 200, const int taskId = 3, + const string srcfolder = "/data/cbmroot/cbmsource/macro/run/data/") { // ----- File names -------------------------------------------------- const string& digiFile = Form("%s/%4d.digi.root", srcfolder.c_str(), runId); const string& recoFile = Form("reco_mcbm_mar22_%d.root", runId); - TString setup = "mcbm_beam_2021_07_surveyed"; + //TString setup = "mcbm_beam_2021_07_surveyed"; + TString setup = "mcbm_beam_2022_03_09_carbon"; // ----------------------------------------------------------------------- @@ -20,7 +20,7 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso const Int_t eb_TriggerMinNumberT0 {1}; const Int_t eb_TriggerMinNumberSts {0}; const Int_t eb_TriggerMinNumberMuch {0}; - const Int_t eb_TriggerMinNumberTof {2}; + const Int_t eb_TriggerMinNumberTof {4}; const Int_t eb_TriggerMinNumberRich {5}; // ----------------------------------------------------------------------- @@ -31,16 +31,16 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso Int_t calSm = 0; Int_t RefSel = 0; Double_t dDeadtime = 50.; - Int_t iSel2 = 500; + Int_t iSel2 = 20; // Tracking - Int_t iSel = 500; // 910041; - Int_t iTrackingSetup = 10; + Int_t iSel = 1; // 910041; + Int_t iTrackingSetup = 2; Int_t iGenCor = 1; Double_t dScalFac = 1.; Double_t dChi2Lim2 = 500.; Bool_t bUseSigCalib = kFALSE; - Int_t iCalOpt = 1; + Int_t iCalOpt = 0; Int_t iTrkPar = 3; // ----------------------------------------------------------------------- @@ -58,6 +58,7 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso Double_t Tint = 100.; // coincidence time interval Int_t iTrackMode = 2; // 2 for TofTracker const Int_t iTofCluMode = 1; + Bool_t doTofTracking = kTRUE; // ----------------------------------------------------------------------- @@ -115,7 +116,8 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso // parFileList->Add("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); std::cout << "-I- " << myName << ": Using parameter file " << tofBdfFile->GetString() << std::endl; - geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2021_07_surveyed.geo.root"; + //geoFile = srcDir + "/macro/mcbm/data/" + setup + ".geo.root"; + geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2022_03_09_carbon.geo.root"; TFile* fgeo = new TFile(geoFile); TGeoManager* geoMan = (TGeoManager*) fgeo->Get("FAIRGeom"); if (NULL == geoMan) { @@ -166,7 +168,7 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso evBuildRaw->SetReferenceDetector(kRawEventBuilderDetTof); // void SetTsParameters(double TsStartTime, double TsLength, double TsOverLength): TsStartTime=0, TsLength=256ms in 2021, TsOverLength=TS overlap, not used in mCBM2021 - evBuildRaw->SetTsParameters(0.0, 1.024e9, 0.0); + evBuildRaw->SetTsParameters(0.0, 1.28e8, 0.0); if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kTof, eb_TriggerMinNumberTof); @@ -182,7 +184,7 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTof, -50, 50); if (geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kSts, -50, 50); if (geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTrd, -200, 200); - if (geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kRich, -50, 700); + if (geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kRich, -50, 100); run->AddTask(evBuildRaw); // ------------------------------------------------------------------------ @@ -288,15 +290,17 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso ; } } - // ------------------------------------------------------------------------- - /* + // --------------------------------------------------------------------------- + // ========================================================================= // === Tof Tracking === // ========================================================================= + cout << "<I> Initialize Tof tracker by ini_trks" << endl; - TString cTrkFile = Form("/%s_tofFindTracks.hst.root", cCalId.Data()); - // ----- Local selection variables ------------------------------------------- + TString cTrkFile = Form("%s/%s_tofFindTracks.hst.root", TofFileFolder.Data(), cCalId.Data()); + + // ----- Local selection variables -------------------------------------- Int_t iRef = iSel % 1000; Int_t iDut = (iSel - iRef) / 1000; @@ -304,715 +308,309 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso iDut = (iDut - iDutRpc) / 10; Int_t iDutSm = iDut % 10; iDut = (iDut - iDutSm) / 10; - //Int_t iRefRpc = iRef % 10; - //iRef = (iRef - iRefRpc) / 10; - // Int_t iRefSm = iRef % 10; - // iRef = (iRef - iRefSm) / 10; Int_t iBucRpc = 0; - CbmTofTrackFinderNN* tofTrackFinder = new CbmTofTrackFinderNN(); - tofTrackFinder->SetMaxTofTimeDifference(0.2); // in ns/cm - - CbmTofTrackFitter* tofTrackFitter = new CbmTofTrackFitterKF(0, 211); - TFitter* MyFit = new TFitter(1); // initialize Minuit - tofTrackFinder->SetFitter(tofTrackFitter); - CbmTofFindTracks* tofFindTracks = new CbmTofFindTracks("TOF Track Finder"); - tofFindTracks->UseFinder(tofTrackFinder); - tofFindTracks->UseFitter(tofTrackFitter); - - tofFindTracks->SetCalOpt(iCalOpt); // 1 - update offsets, 2 - update walk, 0 - bypass - tofFindTracks->SetCorMode(iGenCor); // valid options: 0,1,2,3,4,5,6, 10 - 19 - //tofFindTracks->SetTtTarg(0.047); // target value for Mar2021 double stack, v21b - tofFindTracks->SetTtTarg(0.035); // target value for Jun2021 double stack, v21c - // 0.0605); // target value for Mar2020 triple stack -> betapeak ~ 0.95 - //tofFindTracks->SetTtTarg(0.062); // target value for Mar2020 triple stack -> betapeak ~ 0.95 - //tofFindTracks->SetTtTarg(0.058); // target value for Mar2020 double stack - //tofFindTracks->SetTtTarg(0.051); // target value Nov2019 - //tofFindTracks->SetTtTarg(0.035); // target value for inverse velocity, > 0.033 ns/cm! - tofFindTracks->SetCalParFileName(TofFileFolder + cTrkFile); // Tracker parameter value file name - tofFindTracks->SetR0Lim(5.); - tofFindTracks->SetStationMaxHMul(30); // Max Hit Multiplicity in any used station - - tofFindTracks->SetT0MAX(dScalFac); // in ns - tofFindTracks->SetSIGT(0.08); // default in ns - tofFindTracks->SetSIGX(0.3); // default in cm - tofFindTracks->SetSIGY(0.45); // default in cm - tofFindTracks->SetSIGZ(0.05); // default in cm - tofFindTracks->SetUseSigCalib(bUseSigCalib); // ignore resolutions in CalPar file - tofTrackFinder->SetSIGLIM(dChi2Lim2 * 2.); // matching window in multiples of chi2 - tofTrackFinder->SetChiMaxAccept(dChi2Lim2); // max tracklet chi2 - tofTrackFinder->SetSIGLIMMOD(5.); // max deviation for last hit - tofTrackFinder->SetAddVertex(kFALSE); // disable virtual vertex - - cout << "<I> Tracker Parameter Set: " << iTrkPar << endl; - switch (iTrkPar) { - case 0: // for full mTof setup - tofTrackFinder->SetTxMean(0.); // mean slope dy/dz - tofTrackFinder->SetTyMean(0.); // mean slope dy/dz - tofTrackFinder->SetTxLIM(0.3); // max slope dx/dz - tofTrackFinder->SetTyLIM(0.3); // max dev from mean slope dy/dz - tofFindTracks->SetBeamCounter(5, 0, 0); // default beam counter - break; - case 1: // for double stack test counters - tofTrackFinder->SetTxMean(0.); // mean slope dy/dz - tofTrackFinder->SetTyMean(0.18); // mean slope dy/dz - tofTrackFinder->SetTxLIM(0.15); // max slope dx/dz - tofTrackFinder->SetTyLIM(0.18); // max dev from mean slope dy/dz - tofFindTracks->SetBeamCounter(5, 0, 0); // default beam counter - break; - case 2: // for double stack cosmics - tofTrackFinder->SetTxMean(0.); // mean slope dy/dz - tofTrackFinder->SetTyMean(0.); // mean slope dy/dz - tofTrackFinder->SetTxLIM(2.); // max slope dx/dz - tofTrackFinder->SetTyLIM(20.); // max dev from mean slope dy/dz - tofFindTracks->SetTtMin(-100.); // allow negative velocities with respect to z-axis - tofFindTracks->SetTtTarg(0.033); // target value for mCBM Cosmic2021 triple stack, v21c - tofFindTracks->SetSIGT(0.2); // default in ns - break; - case 3: // for Jul2021-CRI - tofTrackFinder->SetTxMean(-0.2); // mean slope dy/dz - tofTrackFinder->SetTyMean(0.); // mean slope dy/dz - tofTrackFinder->SetTxLIM(0.1); // max slope dx/dz - tofTrackFinder->SetTyLIM(0.3); // max dev from mean slope dy/dz - tofTrackFinder->SetAddVertex(kTRUE); // add virtual vertex - tofFindTracks->SetTtMin(-100.); // allow negative velocities with respect to z-axis - tofFindTracks->SetR0Lim(30.); // allow for large extrapolation errors - break; - } + // ========================================================================= + // === Tracking === + // ========================================================================= - Int_t iMinNofHits = -1; - Int_t iNStations = 0; - Int_t iNReqStations = 3; - - switch (iTrackingSetup) { - case 0: // bypass mode - iMinNofHits = -1; - iNStations = 1; - tofFindTracks->SetStation(0, 5, 0, 0); // Diamond - break; - - case 1: // for calibration mode of full setup - { - Double_t dTsig = dScalFac * 0.03; - tofFindTracks->SetSIGT(dTsig); // allow for variable deviations in ns - } - iMinNofHits = 3; - iNStations = 30; - iNReqStations = 4; - tofFindTracks->SetStation(0, 5, 0, 0); - tofFindTracks->SetStation(1, 0, 2, 2); - tofFindTracks->SetStation(2, 0, 1, 2); - tofFindTracks->SetStation(3, 0, 0, 2); - tofFindTracks->SetStation(4, 0, 2, 1); - tofFindTracks->SetStation(5, 0, 1, 1); - tofFindTracks->SetStation(6, 0, 0, 1); - tofFindTracks->SetStation(7, 0, 2, 3); - tofFindTracks->SetStation(8, 0, 1, 3); - tofFindTracks->SetStation(9, 0, 0, 3); - tofFindTracks->SetStation(10, 0, 2, 0); - tofFindTracks->SetStation(11, 0, 1, 0); - tofFindTracks->SetStation(12, 0, 0, 0); - tofFindTracks->SetStation(13, 0, 2, 4); - tofFindTracks->SetStation(14, 0, 1, 4); - tofFindTracks->SetStation(15, 0, 0, 4); - tofFindTracks->SetStation(16, 0, 4, 0); - tofFindTracks->SetStation(17, 0, 3, 0); - tofFindTracks->SetStation(18, 0, 4, 1); - tofFindTracks->SetStation(19, 0, 3, 1); - tofFindTracks->SetStation(20, 0, 4, 2); - tofFindTracks->SetStation(21, 0, 3, 2); - tofFindTracks->SetStation(22, 0, 4, 3); - tofFindTracks->SetStation(23, 0, 3, 3); - tofFindTracks->SetStation(24, 0, 4, 4); - tofFindTracks->SetStation(25, 0, 3, 4); - tofFindTracks->SetStation(26, 9, 0, 0); - tofFindTracks->SetStation(27, 9, 1, 0); - tofFindTracks->SetStation(28, 9, 0, 1); - tofFindTracks->SetStation(29, 9, 1, 1); - //tofFindTracks->SetStation(28, 6, 0, 0); - //tofFindTracks->SetStation(29, 6, 0, 1); - break; - - case 10: // for calibration mode of full setup - { - Double_t dTsig = dScalFac * 0.03; - tofFindTracks->SetSIGT(dTsig); // allow for variable deviations in ns + // if (doTofTracking) + { + CbmTofTrackFinder* tofTrackFinder = new CbmTofTrackFinderNN(); + tofTrackFinder->SetMaxTofTimeDifference(0.2); // in ns/cm + Int_t TrackerPar = 0; + switch (TrackerPar) { + case 0: // for full mTof setup + tofTrackFinder->SetTxLIM(0.3); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.3); // max dev from mean slope dy/dz + tofTrackFinder->SetTxMean(0.); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.); // mean slope dy/dz + break; + case 1: // for double stack test counters + tofTrackFinder->SetTxMean(0.21); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.18); // mean slope dy/dz + tofTrackFinder->SetTxLIM(0.15); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.18); // max dev from mean slope dy/dz + break; } - iMinNofHits = 3; - iNStations = 37; - iNReqStations = 4; - tofFindTracks->SetStation(36, 5, 0, 0); - tofFindTracks->SetStation(0, 0, 2, 2); - tofFindTracks->SetStation(1, 0, 1, 2); - tofFindTracks->SetStation(2, 0, 0, 2); - tofFindTracks->SetStation(3, 0, 2, 1); - tofFindTracks->SetStation(4, 0, 1, 1); - tofFindTracks->SetStation(5, 0, 0, 1); - tofFindTracks->SetStation(6, 0, 2, 3); - tofFindTracks->SetStation(7, 0, 1, 3); - tofFindTracks->SetStation(8, 0, 0, 3); - tofFindTracks->SetStation(9, 0, 2, 0); - tofFindTracks->SetStation(10, 0, 1, 0); - tofFindTracks->SetStation(11, 0, 0, 0); - tofFindTracks->SetStation(12, 0, 2, 4); - tofFindTracks->SetStation(13, 0, 1, 4); - tofFindTracks->SetStation(14, 0, 0, 4); - tofFindTracks->SetStation(15, 0, 4, 0); - tofFindTracks->SetStation(16, 0, 3, 0); - tofFindTracks->SetStation(17, 0, 4, 1); - tofFindTracks->SetStation(18, 0, 3, 1); - tofFindTracks->SetStation(19, 0, 4, 2); - tofFindTracks->SetStation(20, 0, 3, 2); - tofFindTracks->SetStation(21, 0, 4, 3); - tofFindTracks->SetStation(22, 0, 3, 3); - tofFindTracks->SetStation(23, 0, 4, 4); - tofFindTracks->SetStation(24, 0, 3, 4); - tofFindTracks->SetStation(25, 9, 0, 0); - tofFindTracks->SetStation(26, 9, 1, 0); - tofFindTracks->SetStation(27, 9, 0, 1); - tofFindTracks->SetStation(28, 9, 1, 1); - tofFindTracks->SetStation(29, 6, 0, 0); - tofFindTracks->SetStation(30, 6, 0, 1); - tofFindTracks->SetStation(31, 2, 0, 0); - tofFindTracks->SetStation(32, 2, 0, 1); - tofFindTracks->SetStation(33, 2, 0, 2); - tofFindTracks->SetStation(34, 2, 0, 3); - tofFindTracks->SetStation(35, 2, 0, 4); - break; - - case 11: // for calibration mode of 2-stack & test counters - iMinNofHits = 3; - iNStations = 17; - iNReqStations = 4; - tofFindTracks->SetStation(0, 0, 4, 0); - tofFindTracks->SetStation(1, 0, 3, 0); - tofFindTracks->SetStation(2, 0, 4, 1); - tofFindTracks->SetStation(3, 0, 3, 1); - tofFindTracks->SetStation(4, 0, 4, 2); - tofFindTracks->SetStation(5, 0, 3, 2); - tofFindTracks->SetStation(6, 0, 4, 3); - tofFindTracks->SetStation(7, 0, 3, 3); - tofFindTracks->SetStation(8, 0, 4, 4); - tofFindTracks->SetStation(9, 0, 3, 4); - tofFindTracks->SetStation(10, 9, 0, 0); - tofFindTracks->SetStation(11, 9, 1, 0); - tofFindTracks->SetStation(12, 9, 0, 1); - tofFindTracks->SetStation(13, 9, 1, 1); - tofFindTracks->SetStation(14, 6, 0, 0); - tofFindTracks->SetStation(15, 6, 0, 1); - tofFindTracks->SetStation(16, 5, 0, 0); - break; - - case 12: // for calibration mode of 2-stack & test counters - iMinNofHits = 3; - iNStations = 9; - iNReqStations = 4; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - tofFindTracks->SetStation(2, 9, 0, 0); - tofFindTracks->SetStation(3, 9, 1, 0); - tofFindTracks->SetStation(4, 6, 0, 0); - tofFindTracks->SetStation(5, 9, 0, 1); - tofFindTracks->SetStation(6, 9, 1, 1); - tofFindTracks->SetStation(7, 6, 0, 1); - tofFindTracks->SetStation(8, 5, 0, 0); - break; - - case 13: // for calibration mode of triple-stack (july2021-cri) - iMinNofHits = 3; - iNStations = 10; - iNReqStations = 3; - tofFindTracks->SetStation(0, 0, 1, 2); - tofFindTracks->SetStation(1, 0, 0, 2); - tofFindTracks->SetStation(2, 0, 1, 1); - tofFindTracks->SetStation(3, 0, 0, 1); - tofFindTracks->SetStation(4, 0, 1, 3); - tofFindTracks->SetStation(5, 0, 0, 3); - tofFindTracks->SetStation(6, 0, 1, 0); - tofFindTracks->SetStation(7, 0, 0, 0); - tofFindTracks->SetStation(8, 0, 1, 4); - tofFindTracks->SetStation(9, 0, 0, 4); - break; - - case 113: // for double stack TSHU counter (031) - iMinNofHits = 6; - iNStations = 7; - iNReqStations = 7; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 9, 0, 1); - tofFindTracks->SetStation(2, 9, 1, 1); - tofFindTracks->SetStation(3, 9, 1, 0); - tofFindTracks->SetStation(4, 9, 0, 0); - tofFindTracks->SetStation(5, 5, 0, 0); - tofFindTracks->SetStation(6, iDut, iDutSm, iDutRpc); - break; - - case 114: // for double stack TSHU counter (041) - iMinNofHits = 6; - iNStations = 7; - iNReqStations = 7; - tofFindTracks->SetStation(0, 9, 1, 1); - tofFindTracks->SetStation(1, 9, 0, 1); - tofFindTracks->SetStation(2, 0, 3, 1); - tofFindTracks->SetStation(3, 9, 1, 0); - tofFindTracks->SetStation(4, 9, 0, 0); - tofFindTracks->SetStation(5, 5, 0, 0); - tofFindTracks->SetStation(6, iDut, iDutSm, iDutRpc); - break; - - case 116: // for evaluation of BUC counter (600, 601) - iMinNofHits = 4; - iNStations = 5; - iNReqStations = 5; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 9, 0, 1); - tofFindTracks->SetStation(2, 0, 3, 1); - tofFindTracks->SetStation(3, 9, 0, 0); - tofFindTracks->SetStation(4, iDut, iDutSm, iDutRpc); - break; - - case 117: // for evaluation of BUC counter (600, 601) - iMinNofHits = 5; - iNStations = 6; - iNReqStations = 6; - iBucRpc = 1 - iDutRpc; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 9, 0, 1); - tofFindTracks->SetStation(2, 0, 3, 1); - tofFindTracks->SetStation(3, 9, 0, 0); - tofFindTracks->SetStation(4, 6, 0, iBucRpc); - tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); - break; - - case 2: - iMinNofHits = 3; - iNStations = 28; - iNReqStations = 4; - tofFindTracks->SetStation(0, 0, 2, 2); - tofFindTracks->SetStation(1, 0, 0, 2); - tofFindTracks->SetStation(2, 0, 1, 2); - tofFindTracks->SetStation(3, 0, 2, 1); - tofFindTracks->SetStation(4, 0, 0, 1); - tofFindTracks->SetStation(5, 0, 1, 1); - tofFindTracks->SetStation(6, 0, 2, 3); - tofFindTracks->SetStation(7, 0, 0, 3); - tofFindTracks->SetStation(8, 0, 1, 3); - tofFindTracks->SetStation(9, 0, 2, 0); - tofFindTracks->SetStation(10, 0, 0, 0); - tofFindTracks->SetStation(11, 0, 1, 0); - tofFindTracks->SetStation(12, 0, 2, 4); - tofFindTracks->SetStation(13, 0, 0, 4); - tofFindTracks->SetStation(14, 0, 1, 4); - tofFindTracks->SetStation(15, 0, 4, 0); - tofFindTracks->SetStation(16, 0, 3, 0); - tofFindTracks->SetStation(17, 0, 4, 1); - tofFindTracks->SetStation(18, 0, 3, 1); - tofFindTracks->SetStation(19, 0, 4, 2); - tofFindTracks->SetStation(20, 0, 3, 2); - tofFindTracks->SetStation(21, 0, 4, 3); - tofFindTracks->SetStation(22, 0, 3, 3); - tofFindTracks->SetStation(23, 0, 4, 4); - tofFindTracks->SetStation(24, 0, 3, 4); - tofFindTracks->SetStation(25, 9, 0, 0); - tofFindTracks->SetStation(26, 9, 0, 1); - tofFindTracks->SetStation(27, 5, 0, 0); - break; - - case 3: - iMinNofHits = 3; - iNStations = 16; - iNReqStations = 4; - tofFindTracks->SetStation(0, 5, 0, 0); - tofFindTracks->SetStation(1, 0, 2, 2); - tofFindTracks->SetStation(2, 0, 1, 2); - tofFindTracks->SetStation(3, 0, 0, 2); - - tofFindTracks->SetStation(4, 0, 2, 1); - tofFindTracks->SetStation(5, 0, 1, 1); - tofFindTracks->SetStation(6, 0, 0, 1); - - tofFindTracks->SetStation(7, 0, 2, 3); - tofFindTracks->SetStation(8, 0, 1, 3); - tofFindTracks->SetStation(9, 0, 0, 3); - - tofFindTracks->SetStation(10, 0, 2, 0); - tofFindTracks->SetStation(11, 0, 1, 0); - tofFindTracks->SetStation(12, 0, 0, 0); - - tofFindTracks->SetStation(13, 0, 2, 4); - tofFindTracks->SetStation(14, 0, 1, 4); - tofFindTracks->SetStation(15, 0, 0, 4); - - /* - tofFindTracks->SetStation(16, 0, 3, 2); - tofFindTracks->SetStation(17, 0, 4, 2); - tofFindTracks->SetStation(18, 0, 3, 1); - tofFindTracks->SetStation(19, 0, 4, 1); - tofFindTracks->SetStation(20, 0, 3, 3); - tofFindTracks->SetStation(21, 0, 4, 3); - tofFindTracks->SetStation(22, 0, 3, 0); - tofFindTracks->SetStation(23, 0, 4, 0); - tofFindTracks->SetStation(24, 0, 3, 4); - tofFindTracks->SetStation(25, 0, 4, 4); - */ - /* break; - - case 31: // cosmic triple stack, Aug 2021 - iMinNofHits = 3; - iNStations = 20; - iNReqStations = 4; - tofFindTracks->SetStation(0, 0, 0, 2); - tofFindTracks->SetStation(1, 0, 2, 2); - tofFindTracks->SetStation(2, 0, 1, 2); - tofFindTracks->SetStation(3, 2, 0, 2); - - tofFindTracks->SetStation(4, 0, 0, 1); - tofFindTracks->SetStation(5, 0, 2, 1); - tofFindTracks->SetStation(6, 0, 1, 1); - tofFindTracks->SetStation(7, 2, 0, 1); - - tofFindTracks->SetStation(8, 0, 0, 3); - tofFindTracks->SetStation(9, 0, 2, 3); - tofFindTracks->SetStation(10, 0, 1, 3); - tofFindTracks->SetStation(11, 2, 0, 3); - - tofFindTracks->SetStation(12, 0, 0, 0); - tofFindTracks->SetStation(13, 0, 2, 0); - tofFindTracks->SetStation(14, 0, 1, 0); - tofFindTracks->SetStation(15, 2, 0, 0); - - tofFindTracks->SetStation(16, 0, 0, 4); - tofFindTracks->SetStation(17, 0, 2, 4); - tofFindTracks->SetStation(18, 0, 1, 4); - tofFindTracks->SetStation(19, 2, 0, 4); - break; - - case 4: // for USTC evaluation (dut=910,911) - iMinNofHits = 4; - iNStations = 5; - iNReqStations = 5; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - //tofFindTracks->SetStation(2, 9, 0, 1); // broken in May2021 - tofFindTracks->SetStation(2, 9, 0, 0); - tofFindTracks->SetStation(3, 5, 0, 0); - tofFindTracks->SetStation(4, iDut, iDutSm, iDutRpc); - break; - - case 40: // for USTC evaluation (dut=910) - iMinNofHits = 4; - iNStations = 6; - iNReqStations = 6; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - //tofFindTracks->SetStation(2, 9, 0, 1); - tofFindTracks->SetStation(2, 9, 0, 0); - tofFindTracks->SetStation(3, 9, 1, 1); - tofFindTracks->SetStation(4, 5, 0, 0); - tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); - break; - - case 41: // for USTC evaluation (dut=911) - iMinNofHits = 4; - iNStations = 6; - iNReqStations = 6; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - //tofFindTracks->SetStation(2, 9, 0, 1); - tofFindTracks->SetStation(2, 9, 0, 0); - tofFindTracks->SetStation(3, 9, 1, 0); - tofFindTracks->SetStation(4, 5, 0, 0); - tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); - break; - - case 42: // for USTC evaluation (dut=900, 901) - iMinNofHits = 4; - iNStations = 5; - iNReqStations = 5; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - tofFindTracks->SetStation(2, 6, 0, 0); - tofFindTracks->SetStation(3, 6, 0, 1); - tofFindTracks->SetStation(4, iDut, iDutSm, iDutRpc); - break; - - case 43: // for USTC evaluation (dut=900, 901) - iMinNofHits = 3; - iNStations = 4; - iNReqStations = 4; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - tofFindTracks->SetStation(2, 6, 0, 1); - tofFindTracks->SetStation(3, iDut, iDutSm, iDutRpc); - break; - - case 14: - iMinNofHits = 3; - iNStations = 15; - iNReqStations = 4; - tofFindTracks->SetStation(0, 0, 2, 2); - tofFindTracks->SetStation(1, 0, 1, 2); - tofFindTracks->SetStation(2, 0, 0, 2); - tofFindTracks->SetStation(0, 0, 2, 1); - tofFindTracks->SetStation(1, 0, 1, 1); - tofFindTracks->SetStation(2, 0, 0, 1); - tofFindTracks->SetStation(0, 0, 2, 0); - tofFindTracks->SetStation(1, 0, 1, 0); - tofFindTracks->SetStation(2, 0, 0, 0); - tofFindTracks->SetStation(0, 0, 2, 3); - tofFindTracks->SetStation(1, 0, 1, 3); - tofFindTracks->SetStation(2, 0, 0, 3); - tofFindTracks->SetStation(0, 0, 2, 4); - tofFindTracks->SetStation(1, 0, 1, 4); - tofFindTracks->SetStation(2, 0, 0, 4); - break; - - case 5: // for evaluation of Buc in 2-stack - iMinNofHits = 3; - iNStations = 4; - iNReqStations = 4; - tofFindTracks->SetStation(0, 0, 4, 3); - tofFindTracks->SetStation(1, 0, 3, 3); - tofFindTracks->SetStation(2, 5, 0, 0); - tofFindTracks->SetStation(3, iDut, iDutSm, iDutRpc); - break; - - case 50: // for evaluation of Buc in 2-stack - iMinNofHits = 4; - iNStations = 5; - iNReqStations = 5; - tofFindTracks->SetStation(0, 0, 4, 3); - tofFindTracks->SetStation(1, 0, 3, 3); - tofFindTracks->SetStation(2, 6, 0, 1); - tofFindTracks->SetStation(3, 5, 0, 0); - tofFindTracks->SetStation(4, iDut, iDutSm, iDutRpc); - break; - - case 51: // for evaluation of Buc in 2-stack - iMinNofHits = 4; - iNStations = 5; - iNReqStations = 5; - tofFindTracks->SetStation(0, 0, 4, 3); - tofFindTracks->SetStation(1, 0, 3, 3); - tofFindTracks->SetStation(2, 6, 0, 0); - tofFindTracks->SetStation(3, 5, 0, 0); - tofFindTracks->SetStation(4, iDut, iDutSm, iDutRpc); - break; - - case 6: // for double stack TSHU counter (900,901) evaluation - iMinNofHits = 5; - iNStations = 6; - iNReqStations = 6; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - tofFindTracks->SetStation(2, 9, 1, 1); - tofFindTracks->SetStation(3, 9, 1, 0); - tofFindTracks->SetStation(4, 5, 0, 0); - tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); - break; - - case 60: // for double stack TSHU counter (900) evaluation - iMinNofHits = 5; - iNStations = 7; - iNReqStations = 7; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - tofFindTracks->SetStation(2, 9, 1, 1); - tofFindTracks->SetStation(3, 9, 1, 0); - tofFindTracks->SetStation(4, 9, 0, 1); - tofFindTracks->SetStation(5, 5, 0, 0); - tofFindTracks->SetStation(6, iDut, iDutSm, iDutRpc); - break; - - case 61: // for double stack TSHU counter (901) evaluation - iMinNofHits = 5; - iNStations = 7; - iNReqStations = 7; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - tofFindTracks->SetStation(2, 9, 1, 1); - tofFindTracks->SetStation(3, 9, 1, 0); - tofFindTracks->SetStation(4, 9, 0, 0); - tofFindTracks->SetStation(5, 5, 0, 0); - tofFindTracks->SetStation(6, iDut, iDutSm, iDutRpc); - break; - - case 7: // for double stack mTOF counter evaluation - iMinNofHits = 4; - iNStations = 5; - iNReqStations = 5; - tofFindTracks->SetStation(0, 9, 1, 1); - tofFindTracks->SetStation(1, 9, 0, 0); - tofFindTracks->SetStation(2, 9, 1, 0); - tofFindTracks->SetStation(3, 5, 0, 0); - tofFindTracks->SetStation(4, iDut, iDutSm, iDutRpc); - break; - - case 8: // evaluation of add-on counters (BUC) - iMinNofHits = 5; - iNStations = 6; - - iNReqStations = 6; - tofFindTracks->SetStation(0, 5, 0, 0); - tofFindTracks->SetStation(1, 9, 0, 1); - tofFindTracks->SetStation(2, 0, 4, 1); - tofFindTracks->SetStation(3, 9, 0, 0); - tofFindTracks->SetStation(4, 0, 3, 1); - tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); - break; - - case 81: // evaluation of add-on counters (BUC) in July 2021 - iMinNofHits = 4; - iNStations = 5; - iNReqStations = 5; - tofFindTracks->SetStation(0, 0, 4, 1); - tofFindTracks->SetStation(1, 0, 3, 1); - tofFindTracks->SetStation(2, 9, 0, 0); - tofFindTracks->SetStation(3, 9, 0, 1); - tofFindTracks->SetStation(4, iDut, iDutSm, iDutRpc); - break; - - case 9: // evaluation of M6, Dut=202 - iMinNofHits = 4; - iNStations = 5; - iNReqStations = 5; - tofFindTracks->SetStation(0, 0, 2, 2); - tofFindTracks->SetStation(1, 0, 0, 2); - tofFindTracks->SetStation(2, 0, 1, 2); - tofFindTracks->SetStation(3, 5, 0, 0); - tofFindTracks->SetStation(4, iDut, iDutSm, iDutRpc); - break; - - case 992: // evaluation of CRI cosmics 2021 - iMinNofHits = 3; - iNStations = 4; - iNReqStations = 4; - { - Int_t iType[4] = {0, 0, 0, 2}; - Int_t iModule[4] = {0, 2, 1, 0}; - Int_t iSt = 0; - for (Int_t iM = 0; iM < iNStations; iM++) { - if (iType[iM] == iDut && iModule[iM] == iDutSm) continue; - tofFindTracks->SetStation(iSt, iType[iM], iModule[iM], iDutRpc); - iSt++; - } - } - tofFindTracks->SetStation(3, iDut, iDutSm, iDutRpc); - break; - default: - cout << "Tracking setup " << iTrackingSetup << " not implemented " << endl; - return; - ; - } - tofFindTracks->SetMinNofHits(iMinNofHits); - tofFindTracks->SetNStations(iNStations); - tofFindTracks->SetNReqStations(iNReqStations); - tofFindTracks->PrintSetup(); - run->AddTask(tofFindTracks); - - - // ----- Track reconstruction ------------------------------------------ - /* - Double_t beamWidthX = 0.1; - Double_t beamWidthY = 0.1; - switch (iTrackMode) { - case 2: { - Int_t iGenCor = 1; - Double_t dScalFac = 1.; - Double_t dChi2Lim2 = 3.5; - TString cTrkFile = Form("/%s_tofFindTracks.hst.root", cCalId.Data()); - Int_t iTrackingSetup = 1; - CbmTofTrackFinder* tofTrackFinder = new CbmTofTrackFinderNN(); - tofTrackFinder->SetMaxTofTimeDifference(0.2); // in ns/cm - tofTrackFinder->SetTxLIM(0.3); // max slope dx/dz - tofTrackFinder->SetTyLIM(0.3); // max dev from mean slope dy/dz - tofTrackFinder->SetTyMean(0.); // mean slope dy/dz - CbmTofTrackFitter* tofTrackFitter = new CbmTofTrackFitterKF(0, 211); - TFitter* MyFit = new TFitter(1); // initialize Minuit - tofTrackFinder->SetFitter(tofTrackFitter); - CbmTofFindTracks* tofFindTracks = new CbmTofFindTracks("TOF Track Finder"); - tofFindTracks->UseFinder(tofTrackFinder); - tofFindTracks->UseFitter(tofTrackFitter); - tofFindTracks->SetCorMode(iGenCor); // valid options: 0,1,2,3,4,5,6, 10 - 19 - tofFindTracks->SetTtTarg(0.041); // target value for inverse velocity, > 0.033 ns/cm! - //tofFindTracks->SetTtTarg(0.035); // target value for inverse velocity, > 0.033 ns/cm! - tofFindTracks->SetCalParFileName(TofFileFolder + cTrkFile); // Tracker parameter value file name - tofFindTracks->SetBeamCounter(5, 0, 0); // default beam counter - tofFindTracks->SetStationMaxHMul(30); // Max Hit Multiplicity in any used station - - - tofFindTracks->SetT0MAX(dScalFac); // in ns - tofFindTracks->SetSIGT(0.08); // default in ns - tofFindTracks->SetSIGX(0.3); // default in cm - tofFindTracks->SetSIGY(0.45); // default in cm - tofFindTracks->SetSIGZ(0.05); // default in cm - tofFindTracks->SetUseSigCalib(kFALSE); // ignore resolutions in CalPar file - tofTrackFinder->SetSIGLIM(dChi2Lim2 * 2.); // matching window in multiples of chi2 - tofTrackFinder->SetChiMaxAccept(dChi2Lim2); // max tracklet chi2 - - Int_t iMinNofHits = -1; - Int_t iNStations = 0; - Int_t iNReqStations = 3; - - switch (iTrackingSetup) { - case 0: // bypass mode - iMinNofHits = -1; - iNStations = 1; - tofFindTracks->SetStation(0, 5, 0, 0); // Diamond - break; - - case 1: // for calibration mode of full setup - iMinNofHits = 3; - iNStations = 30; - iNReqStations = 4; - tofFindTracks->SetStation(0, 5, 0, 0); - tofFindTracks->SetStation(1, 0, 2, 2); - tofFindTracks->SetStation(2, 0, 1, 2); - tofFindTracks->SetStation(3, 0, 0, 2); - tofFindTracks->SetStation(4, 0, 2, 1); - tofFindTracks->SetStation(5, 0, 1, 1); - tofFindTracks->SetStation(6, 0, 0, 1); - tofFindTracks->SetStation(7, 0, 2, 3); - tofFindTracks->SetStation(8, 0, 1, 3); - tofFindTracks->SetStation(9, 0, 0, 3); - tofFindTracks->SetStation(10, 0, 2, 0); - tofFindTracks->SetStation(11, 0, 1, 0); - tofFindTracks->SetStation(12, 0, 0, 0); - tofFindTracks->SetStation(13, 0, 2, 4); - tofFindTracks->SetStation(14, 0, 1, 4); - tofFindTracks->SetStation(15, 0, 0, 4); - tofFindTracks->SetStation(16, 0, 4, 0); - tofFindTracks->SetStation(17, 0, 3, 0); - tofFindTracks->SetStation(18, 0, 4, 1); - tofFindTracks->SetStation(19, 0, 3, 1); - tofFindTracks->SetStation(20, 0, 4, 2); - tofFindTracks->SetStation(21, 0, 3, 2); - tofFindTracks->SetStation(22, 0, 4, 3); - tofFindTracks->SetStation(23, 0, 3, 3); - tofFindTracks->SetStation(24, 0, 4, 4); - tofFindTracks->SetStation(25, 0, 3, 4); - tofFindTracks->SetStation(26, 9, 0, 0); - tofFindTracks->SetStation(27, 9, 0, 1); - tofFindTracks->SetStation(28, 6, 0, 0); - tofFindTracks->SetStation(29, 6, 0, 1); - break; + CbmTofTrackFitter* tofTrackFitter = new CbmTofTrackFitterKF(0, 211); + TFitter* MyFit = new TFitter(1); // initialize Minuit + tofTrackFinder->SetFitter(tofTrackFitter); + CbmTofFindTracks* tofFindTracks = new CbmTofFindTracks("TOF Track Finder"); + tofFindTracks->UseFinder(tofTrackFinder); + tofFindTracks->UseFitter(tofTrackFitter); + tofFindTracks->SetCalOpt(iCalOpt); // 1 - update offsets, 2 - update walk, 0 - bypass + tofFindTracks->SetCorMode(iGenCor); // valid options: 0,1,2,3,4,5,6, 10 - 19 + tofFindTracks->SetTtTarg(0.042); // target value Mar2021, after T0 fix (double stack run 1058) + tofFindTracks->SetCalParFileName(cTrkFile); // Tracker parameter value file name + tofFindTracks->SetBeamCounter(5, 0, 0); // default beam counter + tofFindTracks->SetR0Lim(20.); + tofFindTracks->SetStationMaxHMul(30); // Max Hit Multiplicity in any used station + + tofFindTracks->SetT0MAX(dScalFac); // in ns + tofFindTracks->SetSIGT(0.08); // default in ns + tofFindTracks->SetSIGX(0.3); // default in cm + tofFindTracks->SetSIGY(0.45); // default in cm + tofFindTracks->SetSIGZ(0.05); // default in cm + tofFindTracks->SetUseSigCalib(bUseSigCalib); // ignore resolutions in CalPar file + tofTrackFinder->SetSIGLIM(dChi2Lim2 * 2.); // matching window in multiples of chi2 + tofTrackFinder->SetChiMaxAccept(dChi2Lim2); // max tracklet chi2 + + Int_t iMinNofHits = -1; + Int_t iNStations = 0; + Int_t iNReqStations = 3; + + switch (iTrackingSetup) { + case 0: // bypass mode + iMinNofHits = -1; + iNStations = 1; + tofFindTracks->SetStation(0, 5, 0, 0); // Diamond + break; + + case 1: // for calibration mode of full setup + { + Double_t dTsig = dScalFac * 0.03; + tofFindTracks->SetSIGT(dTsig); // allow for variable deviations in ns } - tofFindTracks->SetMinNofHits(iMinNofHits); - tofFindTracks->SetNStations(iNStations); - tofFindTracks->SetNReqStations(iNReqStations); - tofFindTracks->PrintSetup(); - run->AddTask(tofFindTracks); - } break; - - case 1: { + iMinNofHits = 3; + iNStations = 32; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + tofFindTracks->SetStation(16, 0, 4, 0); + tofFindTracks->SetStation(17, 0, 3, 0); + tofFindTracks->SetStation(18, 0, 4, 1); + tofFindTracks->SetStation(19, 0, 3, 1); + tofFindTracks->SetStation(20, 0, 4, 2); + tofFindTracks->SetStation(21, 0, 3, 2); + tofFindTracks->SetStation(22, 0, 4, 3); + tofFindTracks->SetStation(23, 0, 3, 3); + tofFindTracks->SetStation(24, 0, 4, 4); + tofFindTracks->SetStation(25, 0, 3, 4); + tofFindTracks->SetStation(26, 9, 0, 0); + tofFindTracks->SetStation(27, 9, 1, 0); + tofFindTracks->SetStation(28, 9, 0, 1); + tofFindTracks->SetStation(29, 9, 1, 1); + tofFindTracks->SetStation(30, 6, 0, 0); + tofFindTracks->SetStation(31, 6, 0, 1); + break; + + case 11: // for calibration mode of 2-stack & test counters + iMinNofHits = 4; + iNStations = 9; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 9, 0, 0); + tofFindTracks->SetStation(2, 9, 1, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 9, 1, 1); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(6, 0, 4, 0); + tofFindTracks->SetStation(7, 0, 3, 2); + tofFindTracks->SetStation(8, 5, 0, 0); + break; + + case 2: + iMinNofHits = 5; + iNStations = 28; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 0, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 2, 1); + tofFindTracks->SetStation(4, 0, 0, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 2, 3); + tofFindTracks->SetStation(7, 0, 0, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 2, 0); + tofFindTracks->SetStation(10, 0, 0, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 2, 4); + tofFindTracks->SetStation(13, 0, 0, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 4, 0); + tofFindTracks->SetStation(16, 0, 3, 0); + tofFindTracks->SetStation(17, 0, 4, 1); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 2); + tofFindTracks->SetStation(20, 0, 3, 2); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 3); + tofFindTracks->SetStation(23, 0, 4, 4); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 9, 0, 0); + tofFindTracks->SetStation(26, 9, 0, 1); + tofFindTracks->SetStation(27, 5, 0, 0); + break; + + case 3: + iMinNofHits = 3; + iNStations = 16; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + + /* + tofFindTracks->SetStation(16, 0, 3, 2); + tofFindTracks->SetStation(17, 0, 4, 2); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 1); + tofFindTracks->SetStation(20, 0, 3, 3); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 0); + tofFindTracks->SetStation(23, 0, 4, 0); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 0, 4, 4); + */ + break; + + case 4: // for USTC evaluation (dut=910,911) + iMinNofHits = 4; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 0, 3, 1); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 5, 0, 0); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 14: + iMinNofHits = 3; + iNStations = 15; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(0, 0, 2, 1); + tofFindTracks->SetStation(1, 0, 1, 1); + tofFindTracks->SetStation(2, 0, 0, 1); + tofFindTracks->SetStation(0, 0, 2, 0); + tofFindTracks->SetStation(1, 0, 1, 0); + tofFindTracks->SetStation(2, 0, 0, 0); + tofFindTracks->SetStation(0, 0, 2, 3); + tofFindTracks->SetStation(1, 0, 1, 3); + tofFindTracks->SetStation(2, 0, 0, 3); + tofFindTracks->SetStation(0, 0, 2, 4); + tofFindTracks->SetStation(1, 0, 1, 4); + tofFindTracks->SetStation(2, 0, 0, 4); + break; + + case 5: // for calibration of 2-stack and add-on counters (STAR2, BUC) + iMinNofHits = 3; + iNStations = 7; + iNReqStations = 4; + tofFindTracks->SetStation(6, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 9, 0, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 6, 0, 0); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(0, 5, 0, 0); + break; + + case 6: // for double stack USTC counter evaluation + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 6, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 7: // for double stack USTC counter evaluation + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 6, 0, 0); + tofFindTracks->SetStation(3, iDut, iDutSm, iDutRpc); + break; + + case 8: // evaluation of add-on counters (BUC) + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 9, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 9: // calibration of Star2 + iMinNofHits = 4; + iNStations = 5; + iNReqStations = 5; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(1, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + break; + + case 10: + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(3, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(1, 0, 2, 2); + break; + + default: + cout << "Tracking setup " << iTrackingSetup << " not implemented " << endl; + return 1; + ; } - - case 0: - - default:; + tofFindTracks->SetMinNofHits(iMinNofHits); + tofFindTracks->SetNStations(iNStations); + tofFindTracks->SetNReqStations(iNReqStations); + tofFindTracks->PrintSetup(); + std::cout << "MinNofHitsPerTrack: " << iMinNofHits << std::endl; + run->AddTask(tofFindTracks); } - */ // ------------------------------------------------------------------------ @@ -1025,11 +623,13 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso else { qaTask->SetOutputDir(Form("result_run%d_%05d", runId, taskId)); } - qaTask->XOffsetHistos(+25.0); + //qaTask->XOffsetHistos(+25.0); + qaTask->XOffsetHistos(0.0); qaTask->SetMaxNofDrawnEvents(100); qaTask->SetTotRich(23.7, 30.0); qaTask->SetTriggerRichHits(eb_TriggerMinNumberRich); qaTask->SetTriggerTofHits(0); // eb_TriggerMinNumberTof); + qaTask->SetSEDisplayRingOnly(); run->AddTask(qaTask); // ------------------------------------------------------------------------ @@ -1074,7 +674,7 @@ void run_reco_mcbm_real_wToF_mar22(const string srcfolder = "/data/cbmroot/cbmso // outfile << "parFile: " << parFile << std::endl; outfile << "digiFile: " << digiFile << std::endl; outfile << "recoFile: " << recoFile << std::endl; - outfile << "Geometry: " << geoFile << std::endl; + //outfile << "Geometry: " << geoFile << std::endl; outfile << "TrackCalParFile: " << TofFileFolder << cCalId << std::endl; outfile << "TofClusterFile :" << TofFileFolder + cFname << std::endl; outfile << "TofOutput :" << cFname << std::endl << std::endl; diff --git a/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron.C b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron.C new file mode 100644 index 0000000000..e903639f3e --- /dev/null +++ b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron.C @@ -0,0 +1,791 @@ +/* Copyright (C) 2020 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt + SPDX-License-Identifier: GPL-3.0-only + Authors: Florian Uhlig [committer] */ + +void run_reco_mcbm_real_wToF_mar22_iron(const unsigned int runId = 2160, // used for the output folder + int nEvents = 10, const int taskId = 6, + const string srcfolder = "/data/cbmroot/mcbmsource/macro/run/data/") +{ + // ----- File names -------------------------------------------------- + const string& digiFile = Form("%s/%4d.digi.root", srcfolder.c_str(), runId); + + const string& recoFile = Form("reco_mcbm_mar22_iron_%d.root", runId); + //TString setup = "mcbm_beam_2021_07_surveyed"; + TString setup = "mcbm_beam_2022_03_22_iron"; + // ----------------------------------------------------------------------- + + + // ----- EventBuilder Settings----------------------------------------- + const Double_t eb_fixedTimeWindow {200.}; + const Int_t eb_TriggerMinNumberT0 {1}; + const Int_t eb_TriggerMinNumberSts {0}; + const Int_t eb_TriggerMinNumberMuch {0}; + const Int_t eb_TriggerMinNumberTof {4}; + const Int_t eb_TriggerMinNumberRich {5}; + // ----------------------------------------------------------------------- + + + // ----- TOF defaults -------------------------------------------------- + Int_t calMode = 93; + Int_t calSel = 1; + Int_t calSm = 0; + Int_t RefSel = 0; + Double_t dDeadtime = 50.; + Int_t iSel2 = 20; + + // Tracking + Int_t iSel = 1; // 910041; + Int_t iTrackingSetup = 2; + Int_t iGenCor = 1; + Double_t dScalFac = 1.; + Double_t dChi2Lim2 = 500.; + Bool_t bUseSigCalib = kFALSE; + Int_t iCalOpt = 0; + Int_t iTrkPar = 3; + // ----------------------------------------------------------------------- + + + // ----- TOF Settings -------------------------------------------------- + TString cCalId = "490.100.5.0"; + if (runId >= 759) cCalId = "759.100.4.0"; + if (runId >= 812) cCalId = "831.100.4.0"; + if (runId >= 1588) cCalId = "1588.50.6.0"; + if (runId >= 2160) cCalId = "2160.50.4.0"; + Int_t iCalSet = 30040500; // calibration settings + if (runId >= 759) iCalSet = 10020500; + if (runId >= 812) iCalSet = 10020500; + if (runId >= 1588) iCalSet = 12002002; + if (runId >= 2160) iCalSet = 700900500; + + Double_t Tint = 100.; // coincidence time interval + Int_t iTrackMode = 2; // 2 for TofTracker + const Int_t iTofCluMode = 1; + Bool_t doTofTracking = kTRUE; + // ----------------------------------------------------------------------- + + + // ----- Fair logger --------------------------------------------------- + FairLogger::GetLogger()->SetLogScreenLevel("INFO"); + FairLogger::GetLogger()->SetLogVerbosityLevel("LOW"); + TTree::SetMaxTreeSize(90000000000); + // ----------------------------------------------------------------------- + + TString myName = "run_reco_mcbm_real"; + TString srcDir = gSystem->Getenv("VMCWORKDIR"); // top source directory + TString workDir = gSystem->Getenv("VMCWORKDIR"); + + remove(recoFile.c_str()); + + + // ----- Load the geometry setup ------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Loading setup " << setup << std::endl; + CbmSetup* geoSetup = CbmSetup::Instance(); + geoSetup->LoadSetup(setup); + // You can modify the pre-defined setup by using + // CbmSetup::Instance()->RemoveModule(ESystemId) or + // CbmSetup::Instance()->SetModule(ESystemId, const char*, Bool_t) or + //CbmSetup::Instance()->SetActive(ESystemId, Bool_t) + geoSetup->SetActive(ECbmModuleId::kMvd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kSts, kFALSE); + geoSetup->SetActive(ECbmModuleId::kMuch, kFALSE); + geoSetup->SetActive(ECbmModuleId::kRich, kTRUE); + geoSetup->SetActive(ECbmModuleId::kTrd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTrd2d, kFALSE); + geoSetup->SetActive(ECbmModuleId::kPsd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTof, kTRUE); + // ----------------------------------------------------------------------- + + //TString TofFileFolder = Form("/lustre/cbm/users/nh/CBM/cbmroot/trunk/macro/beamtime/mcbm2020/%s", cCalId.Data()); + //TString TofFileFolder = Form("/data/cbmroot/files/tofCal/mTofCriPar2/%s", cCalId.Data()); + TString TofFileFolder = Form("/data/cbmroot/files/tofCal/%s", cCalId.Data()); + + std::cout << std::endl << "-I- " << myName << ": Defining parameter files " << std::endl; + TList* parFileList = new TList(); + + + //-----------------------------------------------// + // TString FId = cCalId; + // TString TofGeo = "v19b_mcbm"; //v18m_mCbm + // TString TofGeo = "v20a_mcbm"; //v18m_mCbm + + + // ----- TOF digitisation parameters ------------------------------------- + TString geoTag; + TString geoFile; + if (geoSetup->IsActive(ECbmModuleId::kTof)) { + geoSetup->GetGeoTag(ECbmModuleId::kTof, geoTag); + TObjString* tofBdfFile = new TObjString(srcDir + "/parameters/tof/tof_" + geoTag + ".digibdf.par"); + //TObjString* tofBdfFile = new TObjString("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + parFileList->Add(tofBdfFile); + // parFileList->Add("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + std::cout << "-I- " << myName << ": Using parameter file " << tofBdfFile->GetString() << std::endl; + + //geoFile = srcDir + "/macro/mcbm/data/" + setup + ".geo.root"; + geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2022_03_22_iron.geo.root"; + TFile* fgeo = new TFile(geoFile); + TGeoManager* geoMan = (TGeoManager*) fgeo->Get("FAIRGeom"); + if (NULL == geoMan) { + cout << "<E> FAIRGeom not found in geoFile " << geoFile.Data() << endl; + return; + } + } + + // ----- Timer -------------------------------------------------------- + TStopwatch timer; + timer.Start(); + // ------------------------------------------------------------------------ + + + // ---- Debug option ------------------------------------------------- + gDebug = 0; + // ------------------------------------------------------------------------ + + gROOT->LoadMacro("save_hst.C"); + + + // ----- Input file --------------------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Using input file " << digiFile << std::endl; + // ------------------------------------------------------------------------ + + // ----- FairRunAna --------------------------------------------------- + FairRunAna* run = new FairRunAna(); + FairFileSource* inputSource = new FairFileSource(digiFile.c_str()); + run->SetSource(inputSource); + run->SetOutputFile(recoFile.c_str()); + + + // ========================================================================= + // === Alignment Correction === + // ========================================================================= + // (Fairsoft Apr21p2 or newer is needed) + + + TString alignmentMatrixFileName = "AlignmentMatrices_" + setup + ".root"; + if (alignmentMatrixFileName.Length() != 0) { + std::cout << "-I- " << myName << ": Applying alignment for file " << alignmentMatrixFileName << std::endl; + + // Define the basic structure which needs to be filled with information + // This structure is stored in the output file and later passed to the + // FairRoot framework to do the (miss)alignment + std::map<std::string, TGeoHMatrix>* matrices {nullptr}; + + // read matrices from disk + LOG(info) << "Filename: " << alignmentMatrixFileName; + TFile* misalignmentMatrixRootfile = new TFile(alignmentMatrixFileName, "READ"); + if (misalignmentMatrixRootfile->IsOpen()) { + gDirectory->GetObject("MisalignMatrices", matrices); + misalignmentMatrixRootfile->Close(); + } + else { + LOG(error) << "Could not open file " << alignmentMatrixFileName << "\n Exiting"; + exit(1); + } + + if (matrices) { run->AddAlignmentMatrices(*matrices); } + else { + LOG(error) << "Alignment required but no matrices found." + << "\n Exiting"; + exit(1); + } + } + // ------------------------------------------------------------------------ + + + // --------------------event builder--------------------------------------- + CbmTaskBuildRawEvents* evBuildRaw = new CbmTaskBuildRawEvents(); + + //Choose between NoOverlap, MergeOverlap, AllowOverlap + evBuildRaw->SetEventOverlapMode(EOverlapModeRaw::AllowOverlap); + + // Remove detectors where digis not found + if (!geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->RemoveDetector(kRawEventBuilderDetRich); + if (!geoSetup->IsActive(ECbmModuleId::kMuch)) evBuildRaw->RemoveDetector(kRawEventBuilderDetMuch); + if (!geoSetup->IsActive(ECbmModuleId::kPsd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetPsd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd2d)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd2D); + if (!geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->RemoveDetector(kRawEventBuilderDetSts); + if (!geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTof); + + // Set TOF as reference detector + evBuildRaw->SetReferenceDetector(kRawEventBuilderDetTof); + + // void SetTsParameters(double TsStartTime, double TsLength, double TsOverLength): TsStartTime=0, TsLength=256ms in 2021, TsOverLength=TS overlap, not used in mCBM2021 + evBuildRaw->SetTsParameters(0.0, 1.28e8, 0.0); + + if (geoSetup->IsActive(ECbmModuleId::kTof)) + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kTof, eb_TriggerMinNumberTof); + + if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kTof, -1); + + //evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kSts, eb_TriggerMinNumberSts); + //evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kSts, -1); + + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kRich, eb_TriggerMinNumberRich); + evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kRich, -1); + + if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTof, -50, 50); + if (geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kSts, -50, 50); + if (geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTrd, -200, 200); + if (geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kRich, -50, 100); + + run->AddTask(evBuildRaw); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction of RICH Hits --------------- + CbmRichMCbmHitProducer* hitProd = new CbmRichMCbmHitProducer(); + hitProd->SetMappingFile("mRICH_Mapping_vert_20190318_elView.geo"); + hitProd->setToTLimits(23.7, 30.0); + hitProd->applyToTCut(); + hitProd->applyICDCorrection(); + run->AddTask(hitProd); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in RICh -> Finding of Rings --------------- + CbmRichReconstruction* richReco = new CbmRichReconstruction(); + richReco->UseMCbmSetup(); + run->AddTask(richReco); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in TOF ---------------------------------- + TString cFname; + switch (iTofCluMode) { + case 1: { + CbmTofEventClusterizer* tofCluster = new CbmTofEventClusterizer("TOF Event Clusterizer", 0, 1); + // cFname=Form("/%s_set%09d_%02d_%01dtofClust.hst.root",cCalId.Data(),iCalSet,calMode,calSel); + // cFname = Form("/%s_set%09d_%02d_%01d_noWalk_tofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + cFname = Form("/%s_set%09d_%02d_%01dtofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + tofCluster->SetCalParFileName(TofFileFolder + cFname); + tofCluster->SetCalMode(calMode); + tofCluster->SetCalSel(calSel); + tofCluster->SetCaldXdYMax(300.); // geometrical matching window in cm + tofCluster->SetCalCluMulMax(3.); // Max Counter Cluster Multiplicity for filling calib histos + tofCluster->SetCalRpc(calSm); // select detector for calibration update + tofCluster->SetTRefId(RefSel); // reference trigger for offset calculation + tofCluster->SetTotMax(20.); // Tot upper limit for walk corection + tofCluster->SetTotMin(0.); // Tot lower limit for walk correction + tofCluster->SetTotPreRange(5.); // effective lower Tot limit in ns from peak position + tofCluster->SetTotMean(5.); // Tot calibration target value in ns + tofCluster->SetMaxTimeDist(1.0); // default cluster range in ns + tofCluster->SetDelTofMax(50.); // acceptance range for cluster distance in ns (!) + tofCluster->SetSel2MulMax(3); // limit Multiplicity in 2nd selector + tofCluster->SetChannelDeadtime(dDeadtime); // artificial deadtime in ns + tofCluster->SetEnableAvWalk(kFALSE); + // tofCluster->SetEnableMatchPosScaling(kFALSE); // turn off projection to nominal target + tofCluster->SetYFitMin(1.E4); + tofCluster->SetToDAv(0.04); + tofCluster->SetIdMode(1); // calibrate on module level + tofCluster->SetTRefDifMax(2.0); // in ns + tofCluster->PosYMaxScal(0.75); //in % of length + Int_t iBRef = iCalSet % 1000; + Int_t iSet = (iCalSet - iBRef) / 1000; + Int_t iRSel = 0; + Int_t iRSelTyp = 0; + Int_t iRSelSm = 0; + Int_t iRSelRpc = 0; + iRSel = iBRef; // use diamond + Int_t iRSelin = iRSel; + iRSelRpc = iRSel % 10; + iRSelTyp = (iRSel - iRSelRpc) / 10; + iRSelSm = iRSelTyp % 10; + iRSelTyp = (iRSelTyp - iRSelSm) / 10; + tofCluster->SetBeamRefId(iRSelTyp); // define Beam reference counter + tofCluster->SetBeamRefSm(iRSelSm); + tofCluster->SetBeamRefDet(iRSelRpc); + tofCluster->SetBeamAddRefMul(-1); + tofCluster->SetBeamRefMulMax(3); + Int_t iSel2in = iSel2; + Int_t iSel2Rpc = iSel2 % 10; + iSel2 = (iSel2 - iSel2Rpc) / 10; + Int_t iSel2Sm = iSel2 % 10; + iSel2 = (iSel2 - iSel2Sm) / 10; + if (iSel2 > -1) { + tofCluster->SetSel2Id(iSel2); + tofCluster->SetSel2Sm(iSel2Sm); + tofCluster->SetSel2Rpc(iSel2Rpc); + } + Int_t iRef = iSet % 1000; + Int_t iDut = (iSet - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + tofCluster->SetDutId(iDut); + tofCluster->SetDutSm(iDutSm); + tofCluster->SetDutRpc(iDutRpc); + + Int_t iRefRpc = iRef % 10; + iRef = (iRef - iRefRpc) / 10; + Int_t iRefSm = iRef % 10; + iRef = (iRef - iRefSm) / 10; + + tofCluster->SetSelId(iRef); + tofCluster->SetSelSm(iRefSm); + tofCluster->SetSelRpc(iRefRpc); + + run->AddTask(tofCluster); + std::cout << "-I- " << myName << ": Added task " << tofCluster->GetName() << std::endl; + } break; + + default: { + ; + } + } + // ------------------------------------------------------------------------- + + // ========================================================================= + // === Tof Tracking === + // ========================================================================= + + cout << "<I> Initialize Tof tracker by ini_trks" << endl; + TString cTrkFile = Form("%s/%s_tofFindTracks.hst.root", TofFileFolder.Data(), cCalId.Data()); + + // ----- Local selection variables -------------------------------------- + + Int_t iRef = iSel % 1000; + Int_t iDut = (iSel - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + Int_t iBucRpc = 0; + + // ========================================================================= + // === Tracking === + // ========================================================================= + + //if (doTofTracking) + { + CbmTofTrackFinder* tofTrackFinder = new CbmTofTrackFinderNN(); + tofTrackFinder->SetMaxTofTimeDifference(0.2); // in ns/cm + Int_t TrackerPar = 0; + switch (TrackerPar) { + case 0: // for full mTof setup + tofTrackFinder->SetTxLIM(0.3); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.3); // max dev from mean slope dy/dz + tofTrackFinder->SetTxMean(0.); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.); // mean slope dy/dz + break; + case 1: // for double stack test counters + tofTrackFinder->SetTxMean(0.21); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.18); // mean slope dy/dz + tofTrackFinder->SetTxLIM(0.15); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.18); // max dev from mean slope dy/dz + break; + } + + CbmTofTrackFitter* tofTrackFitter = new CbmTofTrackFitterKF(0, 211); + TFitter* MyFit = new TFitter(1); // initialize Minuit + tofTrackFinder->SetFitter(tofTrackFitter); + CbmTofFindTracks* tofFindTracks = new CbmTofFindTracks("TOF Track Finder"); + tofFindTracks->UseFinder(tofTrackFinder); + tofFindTracks->UseFitter(tofTrackFitter); + tofFindTracks->SetCalOpt(iCalOpt); // 1 - update offsets, 2 - update walk, 0 - bypass + tofFindTracks->SetCorMode(iGenCor); // valid options: 0,1,2,3,4,5,6, 10 - 19 + tofFindTracks->SetTtTarg(0.042); // target value Mar2021, after T0 fix (double stack run 1058) + tofFindTracks->SetCalParFileName(cTrkFile); // Tracker parameter value file name + tofFindTracks->SetBeamCounter(5, 0, 0); // default beam counter + tofFindTracks->SetR0Lim(20.); + tofFindTracks->SetStationMaxHMul(30); // Max Hit Multiplicity in any used station + + tofFindTracks->SetT0MAX(dScalFac); // in ns + tofFindTracks->SetSIGT(0.08); // default in ns + tofFindTracks->SetSIGX(0.3); // default in cm + tofFindTracks->SetSIGY(0.45); // default in cm + tofFindTracks->SetSIGZ(0.05); // default in cm + tofFindTracks->SetUseSigCalib(bUseSigCalib); // ignore resolutions in CalPar file + tofTrackFinder->SetSIGLIM(dChi2Lim2 * 2.); // matching window in multiples of chi2 + tofTrackFinder->SetChiMaxAccept(dChi2Lim2); // max tracklet chi2 + + Int_t iMinNofHits = -1; + Int_t iNStations = 0; + Int_t iNReqStations = 3; + + switch (iTrackingSetup) { + case 0: // bypass mode + iMinNofHits = -1; + iNStations = 1; + tofFindTracks->SetStation(0, 5, 0, 0); // Diamond + break; + + case 1: // for calibration mode of full setup + { + Double_t dTsig = dScalFac * 0.03; + tofFindTracks->SetSIGT(dTsig); // allow for variable deviations in ns + } + iMinNofHits = 3; + iNStations = 32; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + tofFindTracks->SetStation(16, 0, 4, 0); + tofFindTracks->SetStation(17, 0, 3, 0); + tofFindTracks->SetStation(18, 0, 4, 1); + tofFindTracks->SetStation(19, 0, 3, 1); + tofFindTracks->SetStation(20, 0, 4, 2); + tofFindTracks->SetStation(21, 0, 3, 2); + tofFindTracks->SetStation(22, 0, 4, 3); + tofFindTracks->SetStation(23, 0, 3, 3); + tofFindTracks->SetStation(24, 0, 4, 4); + tofFindTracks->SetStation(25, 0, 3, 4); + tofFindTracks->SetStation(26, 9, 0, 0); + tofFindTracks->SetStation(27, 9, 1, 0); + tofFindTracks->SetStation(28, 9, 0, 1); + tofFindTracks->SetStation(29, 9, 1, 1); + tofFindTracks->SetStation(30, 6, 0, 0); + tofFindTracks->SetStation(31, 6, 0, 1); + break; + + case 11: // for calibration mode of 2-stack & test counters + iMinNofHits = 4; + iNStations = 9; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 9, 0, 0); + tofFindTracks->SetStation(2, 9, 1, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 9, 1, 1); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(6, 0, 4, 0); + tofFindTracks->SetStation(7, 0, 3, 2); + tofFindTracks->SetStation(8, 5, 0, 0); + break; + + case 2: + iMinNofHits = 5; + iNStations = 28; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 0, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 2, 1); + tofFindTracks->SetStation(4, 0, 0, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 2, 3); + tofFindTracks->SetStation(7, 0, 0, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 2, 0); + tofFindTracks->SetStation(10, 0, 0, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 2, 4); + tofFindTracks->SetStation(13, 0, 0, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 4, 0); + tofFindTracks->SetStation(16, 0, 3, 0); + tofFindTracks->SetStation(17, 0, 4, 1); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 2); + tofFindTracks->SetStation(20, 0, 3, 2); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 3); + tofFindTracks->SetStation(23, 0, 4, 4); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 9, 0, 0); + tofFindTracks->SetStation(26, 9, 0, 1); + tofFindTracks->SetStation(27, 5, 0, 0); + break; + + case 3: + iMinNofHits = 3; + iNStations = 16; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + + /* + tofFindTracks->SetStation(16, 0, 3, 2); + tofFindTracks->SetStation(17, 0, 4, 2); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 1); + tofFindTracks->SetStation(20, 0, 3, 3); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 0); + tofFindTracks->SetStation(23, 0, 4, 0); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 0, 4, 4); + */ + break; + + case 4: // for USTC evaluation (dut=910,911) + iMinNofHits = 4; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 0, 3, 1); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 5, 0, 0); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 14: + iMinNofHits = 3; + iNStations = 15; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(0, 0, 2, 1); + tofFindTracks->SetStation(1, 0, 1, 1); + tofFindTracks->SetStation(2, 0, 0, 1); + tofFindTracks->SetStation(0, 0, 2, 0); + tofFindTracks->SetStation(1, 0, 1, 0); + tofFindTracks->SetStation(2, 0, 0, 0); + tofFindTracks->SetStation(0, 0, 2, 3); + tofFindTracks->SetStation(1, 0, 1, 3); + tofFindTracks->SetStation(2, 0, 0, 3); + tofFindTracks->SetStation(0, 0, 2, 4); + tofFindTracks->SetStation(1, 0, 1, 4); + tofFindTracks->SetStation(2, 0, 0, 4); + break; + + case 5: // for calibration of 2-stack and add-on counters (STAR2, BUC) + iMinNofHits = 3; + iNStations = 7; + iNReqStations = 4; + tofFindTracks->SetStation(6, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 9, 0, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 6, 0, 0); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(0, 5, 0, 0); + break; + + case 6: // for double stack USTC counter evaluation + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 6, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 7: // for double stack USTC counter evaluation + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 6, 0, 0); + tofFindTracks->SetStation(3, iDut, iDutSm, iDutRpc); + break; + + case 8: // evaluation of add-on counters (BUC) + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 9, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 9: // calibration of Star2 + iMinNofHits = 4; + iNStations = 5; + iNReqStations = 5; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(1, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + break; + + case 10: + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(3, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(1, 0, 2, 2); + break; + + default: + cout << "Tracking setup " << iTrackingSetup << " not implemented " << endl; + return 1; + ; + } + tofFindTracks->SetMinNofHits(iMinNofHits); + tofFindTracks->SetNStations(iNStations); + tofFindTracks->SetNReqStations(iNReqStations); + tofFindTracks->PrintSetup(); + std::cout << "MinNofHitsPerTrack: " << iMinNofHits << std::endl; + run->AddTask(tofFindTracks); + } + // ------------------------------------------------------------------------ + + + // ========================================================================= + // === RICH QA === + // ========================================================================= + + CbmRichMCbmQaReal* qaTask = new CbmRichMCbmQaReal(); + if (taskId < 0) { qaTask->SetOutputDir(Form("result_run%d", runId)); } + else { + qaTask->SetOutputDir(Form("result_run%d_%05d", runId, taskId)); + } + //qaTask->XOffsetHistos(+25.0); + qaTask->XOffsetHistos(-4.1); + qaTask->SetMaxNofDrawnEvents(100); + qaTask->SetTotRich(23.7, 30.0); + qaTask->SetTriggerRichHits(eb_TriggerMinNumberRich); + qaTask->SetTriggerTofHits(0); // eb_TriggerMinNumberTof); + qaTask->SetSEDisplayRingOnly(); + run->AddTask(qaTask); + // ------------------------------------------------------------------------ + + + // ----- Parameter database -------------------------------------------- + std::cout << std::endl << std::endl << "-I- " << myName << ": Set runtime DB" << std::endl; + FairRuntimeDb* rtdb = run->GetRuntimeDb(); + Bool_t kParameterMerged = kTRUE; + FairParRootFileIo* parIo1 = new FairParRootFileIo(kParameterMerged); + FairParAsciiFileIo* parIo2 = new FairParAsciiFileIo(); + // parIo1->open(parFile.c_str(), "UPDATE"); + parIo2->open(parFileList, "in"); + parIo2->print(); + rtdb->setFirstInput(parIo2); + // ------------------------------------------------------------------------ + + + // ----- Run initialisation ------------------------------------------- + std::cout << std::endl << "-I- " << myName << ": Initialise run" << std::endl; + run->Init(); + // ------------------------------------------------------------------------ + + + // ----- Database update ---------------------------------------------- + rtdb->setOutput(parIo1); + rtdb->saveOutput(); + rtdb->print(); + rtdb->printParamContexts(); + // ------------------------------------------------------------------------ + + + //--- House Keeping ------------------------------------------------------- + // print all important infos in a file + std::ofstream outfile; + if (taskId < 0) { outfile.open(Form("result_run%d/run_info.dat", runId)); } + else { + outfile.open(Form("result_run%d_%05d/run_info.dat", runId, taskId)); + } + // write inputted data into the file. + outfile << "Run: " << runId << std::endl; + outfile << "Events: " << nEvents << std::endl; + // outfile << "parFile: " << parFile << std::endl; + outfile << "digiFile: " << digiFile << std::endl; + outfile << "recoFile: " << recoFile << std::endl; + //outfile << "Geometry: " << geoFile << std::endl; + outfile << "TrackCalParFile: " << TofFileFolder << cCalId << std::endl; + outfile << "TofClusterFile :" << TofFileFolder + cFname << std::endl; + outfile << "TofOutput :" << cFname << std::endl << std::endl; + outfile << "Trigger:" << std::endl; + outfile << " fixedTimeWindow :" << eb_fixedTimeWindow << std::endl; + outfile << " MinNumberT0 :" << eb_TriggerMinNumberT0 << std::endl; + outfile << " MinNumberSts :" << eb_TriggerMinNumberSts << std::endl; + outfile << " MinNumberMuch :" << eb_TriggerMinNumberMuch << std::endl; + outfile << " MinNumberTof :" << eb_TriggerMinNumberTof << std::endl; + outfile << " MinNumberRich :" << eb_TriggerMinNumberRich << std::endl; + outfile.close(); + // ------------------------------------------------------------------------ + + + // ----- Start run ---------------------------------------------------- + std::cout << std::endl << std::endl; + std::cout << "-I- " << myName << ": Starting run" << std::endl; + run->Run(0, nEvents); + // ------------------------------------------------------------------------ + + + // ----- Finish ------------------------------------------------------- + timer.Stop(); + std::cout << std::endl << std::endl; + std::cout << "Macro finished succesfully." << std::endl; + std::cout << "Output file is " << recoFile << std::endl; + // std::cout << "Parameter file is " << parFile << std::endl; + std::cout << "Real time " << timer.RealTime() << " s, CPU time " << timer.CpuTime() << " s" << std::endl; + std::cout << "Test passed" << std::endl << "All ok" << std::endl; + + // ----- Resource monitoring ------------------------------------------ + // if ( hasFairMonitor /*Has_Fair_Monitor()*/ ) { // FairRoot Version >= 15.11 + // // Extract the maximal used memory an add is as Dart measurement + // // This line is filtered by CTest and the value send to CDash + // FairSystemInfo sysInfo; + // Float_t maxMemory=sysInfo.GetMaxMemory(); + // std::cout << "<DartMeasurement name=\"MaxMemory\" type=\"numeric/double\">"; + // std::cout << maxMemory; + // std::cout << "</DartMeasurement>" << std::endl; + // + // Float_t cpuUsage=ctime/rtime; + // std::cout << "<DartMeasurement name=\"CpuLoad\" type=\"numeric/double\">"; + // std::cout << cpuUsage; + // std::cout << "</DartMeasurement>" << std::endl; + // + // FairMonitor* tempMon = FairMonitor::GetMonitor(); + // tempMon->Print(); + // } +} + +void save_hst(TString cstr = "status.hst.root", Bool_t bROOT = kFALSE) +{ + cout << "save all histograms to file " << cstr.Data() << endl; + TList* tList(NULL); + if (bROOT) { tList = gROOT->GetList(); } + else { + tList = gDirectory->GetList(); + } + TIter next(tList); + // Write objects to the file + TFile* fHist = new TFile(cstr, "RECREATE"); + { + TObject* obj; + while ((obj = (TObject*) next())) { + if (obj->InheritsFrom(TH1::Class()) || obj->InheritsFrom(TEfficiency::Class())) { obj->Write(); } + } + } + // fHist->ls(); + fHist->Close(); +} diff --git a/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_T0ref.C b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_T0ref.C new file mode 100644 index 0000000000..db1872bc75 --- /dev/null +++ b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_T0ref.C @@ -0,0 +1,805 @@ +/* Copyright (C) 2020 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt + SPDX-License-Identifier: GPL-3.0-only + Authors: Florian Uhlig [committer] */ + +void run_reco_mcbm_real_wToF_mar22_iron_T0ref(const unsigned int runId = 2160, // used for the output folder + int nEvents = 50, const int taskId = 11, + const string srcfolder = "/data/cbmroot/mcbmsource/macro/run/data/") +{ + // ----- File names -------------------------------------------------- + const string& digiFile = Form("%s/%4d.digi.root", srcfolder.c_str(), runId); + + + //TString setup = "mcbm_beam_2021_07_surveyed"; + TString setup = "mcbm_beam_2022_03_22_iron"; + if (runId >= 2352) setup = "mcbm_beam_2022_05_23_nickel"; + + const string& recoFile = Form("reco_%s_%d.root", setup.Data(), runId); + // ----------------------------------------------------------------------- + + + // ----- EventBuilder Settings----------------------------------------- + const Double_t eb_fixedTimeWindow {200.}; + const Int_t eb_TriggerMinNumberT0 {1}; + const Int_t eb_TriggerMaxNumberT0 {2}; + const Int_t eb_TriggerMinNumberSts {0}; + const Int_t eb_TriggerMinNumberMuch {0}; + const Int_t eb_TriggerMinNumberTof {16}; + const Int_t eb_TriggerMinNumberTofLayers {4}; + const Int_t eb_TriggerMinNumberRich {5}; + // ----------------------------------------------------------------------- + + + // ----- TOF defaults -------------------------------------------------- + Int_t calMode = 93; + Int_t calSel = 1; + Int_t calSm = 0; + Int_t RefSel = 0; + Double_t dDeadtime = 50.; + Int_t iSel2 = 20; + + // Tracking + Int_t iSel = 1; // 910041; + Int_t iTrackingSetup = 2; + Int_t iGenCor = 1; + Double_t dScalFac = 1.; + Double_t dChi2Lim2 = 500.; + Bool_t bUseSigCalib = kFALSE; + Int_t iCalOpt = 0; + Int_t iTrkPar = 3; + // ----------------------------------------------------------------------- + + + // ----- TOF Settings -------------------------------------------------- + TString cCalId = "490.100.5.0"; + if (runId >= 759) cCalId = "759.100.4.0"; + if (runId >= 812) cCalId = "831.100.4.0"; + if (runId >= 1588) cCalId = "1588.50.6.0"; + if (runId >= 2160) cCalId = "2160.50.4.0"; + if (runId >= 2352) cCalId = "2365.5.lxbk0600"; + Int_t iCalSet = 30040500; // calibration settings + if (runId >= 759) iCalSet = 10020500; + if (runId >= 812) iCalSet = 10020500; + if (runId >= 1588) iCalSet = 12002002; + if (runId >= 2160) iCalSet = 700900500; + if (runId >= 2352) iCalSet = 42032500; + + Double_t Tint = 100.; // coincidence time interval + Int_t iTrackMode = 2; // 2 for TofTracker + const Int_t iTofCluMode = 1; + Bool_t doTofTracking = kTRUE; + // ----------------------------------------------------------------------- + + + // ----- Fair logger --------------------------------------------------- + FairLogger::GetLogger()->SetLogScreenLevel("INFO"); + FairLogger::GetLogger()->SetLogVerbosityLevel("LOW"); + TTree::SetMaxTreeSize(90000000000); + // ----------------------------------------------------------------------- + + TString myName = "run_reco_mcbm_real"; + TString srcDir = gSystem->Getenv("VMCWORKDIR"); // top source directory + TString workDir = gSystem->Getenv("VMCWORKDIR"); + + remove(recoFile.c_str()); + + + // ----- Load the geometry setup ------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Loading setup " << setup << std::endl; + CbmSetup* geoSetup = CbmSetup::Instance(); + geoSetup->LoadSetup(setup); + // You can modify the pre-defined setup by using + // CbmSetup::Instance()->RemoveModule(ESystemId) or + // CbmSetup::Instance()->SetModule(ESystemId, const char*, Bool_t) or + //CbmSetup::Instance()->SetActive(ESystemId, Bool_t) + geoSetup->SetActive(ECbmModuleId::kMvd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kSts, kFALSE); + geoSetup->SetActive(ECbmModuleId::kMuch, kFALSE); + geoSetup->SetActive(ECbmModuleId::kRich, kTRUE); + geoSetup->SetActive(ECbmModuleId::kTrd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTrd2d, kFALSE); + geoSetup->SetActive(ECbmModuleId::kPsd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTof, kTRUE); + // ----------------------------------------------------------------------- + + //TString TofFileFolder = Form("/lustre/cbm/users/nh/CBM/cbmroot/trunk/macro/beamtime/mcbm2020/%s", cCalId.Data()); + //TString TofFileFolder = Form("/data/cbmroot/files/tofCal/mTofCriPar2/%s", cCalId.Data()); + TString TofFileFolder = Form("/data/cbmroot/files/tofCal/%s", cCalId.Data()); + + std::cout << std::endl << "-I- " << myName << ": Defining parameter files " << std::endl; + TList* parFileList = new TList(); + + + //-----------------------------------------------// + // TString FId = cCalId; + // TString TofGeo = "v19b_mcbm"; //v18m_mCbm + // TString TofGeo = "v20a_mcbm"; //v18m_mCbm + + + // ----- TOF digitisation parameters ------------------------------------- + TString geoTag; + TString geoFile; + if (geoSetup->IsActive(ECbmModuleId::kTof)) { + geoSetup->GetGeoTag(ECbmModuleId::kTof, geoTag); + TObjString* tofBdfFile = new TObjString(srcDir + "/parameters/tof/tof_" + geoTag + ".digibdf.par"); + //TObjString* tofBdfFile = new TObjString("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + parFileList->Add(tofBdfFile); + // parFileList->Add("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + std::cout << "-I- " << myName << ": Using parameter file " << tofBdfFile->GetString() << std::endl; + + geoFile = srcDir + "/macro/mcbm/data/" + setup + ".geo.root"; + //geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2022_03_22_iron.geo.root"; + TFile* fgeo = new TFile(geoFile); + TGeoManager* geoMan = (TGeoManager*) fgeo->Get("FAIRGeom"); + if (NULL == geoMan) { + cout << "<E> FAIRGeom not found in geoFile " << geoFile.Data() << endl; + return; + } + } + + // ----- Timer -------------------------------------------------------- + TStopwatch timer; + timer.Start(); + // ------------------------------------------------------------------------ + + + // ---- Debug option ------------------------------------------------- + gDebug = 0; + // ------------------------------------------------------------------------ + + gROOT->LoadMacro("save_hst.C"); + + + // ----- Input file --------------------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Using input file " << digiFile << std::endl; + // ------------------------------------------------------------------------ + + // ----- FairRunAna --------------------------------------------------- + FairRunAna* run = new FairRunAna(); + FairFileSource* inputSource = new FairFileSource(digiFile.c_str()); + run->SetSource(inputSource); + run->SetOutputFile(recoFile.c_str()); + + + // ========================================================================= + // === Alignment Correction === + // ========================================================================= + // (Fairsoft Apr21p2 or newer is needed) + + + TString alignmentMatrixFileName = "AlignmentMatrices_" + setup + ".root"; + if (alignmentMatrixFileName.Length() != 0) { + std::cout << "-I- " << myName << ": Applying alignment for file " << alignmentMatrixFileName << std::endl; + + // Define the basic structure which needs to be filled with information + // This structure is stored in the output file and later passed to the + // FairRoot framework to do the (miss)alignment + std::map<std::string, TGeoHMatrix>* matrices {nullptr}; + + // read matrices from disk + LOG(info) << "Filename: " << alignmentMatrixFileName; + TFile* misalignmentMatrixRootfile = new TFile(alignmentMatrixFileName, "READ"); + if (misalignmentMatrixRootfile->IsOpen()) { + gDirectory->GetObject("MisalignMatrices", matrices); + misalignmentMatrixRootfile->Close(); + } + else { + LOG(error) << "Could not open file " << alignmentMatrixFileName << "\n Exiting"; + exit(1); + } + + if (matrices) { run->AddAlignmentMatrices(*matrices); } + else { + LOG(error) << "Alignment required but no matrices found." + << "\n Exiting"; + exit(1); + } + } + // ------------------------------------------------------------------------ + + + // --------------------event builder--------------------------------------- + CbmTaskBuildRawEvents* evBuildRaw = new CbmTaskBuildRawEvents(); + + //Choose between NoOverlap, MergeOverlap, AllowOverlap + evBuildRaw->SetEventOverlapMode(EOverlapModeRaw::AllowOverlap); + + // Remove detectors where digis not found + if (!geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->RemoveDetector(kRawEventBuilderDetRich); + if (!geoSetup->IsActive(ECbmModuleId::kMuch)) evBuildRaw->RemoveDetector(kRawEventBuilderDetMuch); + if (!geoSetup->IsActive(ECbmModuleId::kPsd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetPsd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd2d)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd2D); + if (!geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->RemoveDetector(kRawEventBuilderDetSts); + if (!geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTof); + + // Set TOF as reference detector + //evBuildRaw->SetReferenceDetector(kRawEventBuilderDetTof); + evBuildRaw->SetReferenceDetector(kRawEventBuilderDetT0); + + // void SetTsParameters(double TsStartTime, double TsLength, double TsOverLength): TsStartTime=0, TsLength=256ms in 2021, TsOverLength=TS overlap, not used in mCBM2021 + evBuildRaw->SetTsParameters(0.0, 1.28e8, 0.0); + + if (geoSetup->IsActive(ECbmModuleId::kTof)) + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kTof, eb_TriggerMinNumberTof); + if (geoSetup->IsActive(ECbmModuleId::kTof)) + evBuildRaw->SetTriggerMinLayersNumber(ECbmModuleId::kTof, eb_TriggerMinNumberTofLayers); + + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kT0, eb_TriggerMinNumberT0); + evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kT0, eb_TriggerMaxNumberT0); + if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kTof, -1); + + //evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kSts, eb_TriggerMinNumberSts); + //evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kSts, -1); + + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kRich, eb_TriggerMinNumberRich); + evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kRich, -1); + + evBuildRaw->SetTriggerWindow(ECbmModuleId::kT0, -50, 150); + if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTof, -50, 100); + if (geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kSts, -50, 50); + if (geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTrd, -200, 200); + if (geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kRich, -50, 100); + + run->AddTask(evBuildRaw); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction of RICH Hits --------------- + CbmRichMCbmHitProducer* hitProd = new CbmRichMCbmHitProducer(); + hitProd->SetMappingFile("mRICH_Mapping_vert_20190318_elView.geo"); + hitProd->setToTLimits(23.7, 30.0); + hitProd->applyToTCut(); + hitProd->applyICDCorrection(); + run->AddTask(hitProd); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in RICh -> Finding of Rings --------------- + CbmRichReconstruction* richReco = new CbmRichReconstruction(); + richReco->UseMCbmSetup(); + run->AddTask(richReco); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in TOF ---------------------------------- + TString cFname; + switch (iTofCluMode) { + case 1: { + CbmTofEventClusterizer* tofCluster = new CbmTofEventClusterizer("TOF Event Clusterizer", 0, 1); + // cFname=Form("/%s_set%09d_%02d_%01dtofClust.hst.root",cCalId.Data(),iCalSet,calMode,calSel); + // cFname = Form("/%s_set%09d_%02d_%01d_noWalk_tofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + cFname = Form("/%s_set%09d_%02d_%01dtofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + tofCluster->SetCalParFileName(TofFileFolder + cFname); + tofCluster->SetCalMode(calMode); + tofCluster->SetCalSel(calSel); + tofCluster->SetCaldXdYMax(300.); // geometrical matching window in cm + tofCluster->SetCalCluMulMax(3.); // Max Counter Cluster Multiplicity for filling calib histos + tofCluster->SetCalRpc(calSm); // select detector for calibration update + tofCluster->SetTRefId(RefSel); // reference trigger for offset calculation + tofCluster->SetTotMax(20.); // Tot upper limit for walk corection + tofCluster->SetTotMin(0.); // Tot lower limit for walk correction + tofCluster->SetTotPreRange(5.); // effective lower Tot limit in ns from peak position + tofCluster->SetTotMean(5.); // Tot calibration target value in ns + tofCluster->SetMaxTimeDist(1.0); // default cluster range in ns + tofCluster->SetDelTofMax(50.); // acceptance range for cluster distance in ns (!) + tofCluster->SetSel2MulMax(3); // limit Multiplicity in 2nd selector + tofCluster->SetChannelDeadtime(dDeadtime); // artificial deadtime in ns + tofCluster->SetEnableAvWalk(kFALSE); + // tofCluster->SetEnableMatchPosScaling(kFALSE); // turn off projection to nominal target + tofCluster->SetYFitMin(1.E4); + tofCluster->SetToDAv(0.04); + tofCluster->SetIdMode(1); // calibrate on module level + tofCluster->SetTRefDifMax(2.0); // in ns + tofCluster->PosYMaxScal(0.75); //in % of length + Int_t iBRef = iCalSet % 1000; + Int_t iSet = (iCalSet - iBRef) / 1000; + Int_t iRSel = 0; + Int_t iRSelTyp = 0; + Int_t iRSelSm = 0; + Int_t iRSelRpc = 0; + iRSel = iBRef; // use diamond + Int_t iRSelin = iRSel; + iRSelRpc = iRSel % 10; + iRSelTyp = (iRSel - iRSelRpc) / 10; + iRSelSm = iRSelTyp % 10; + iRSelTyp = (iRSelTyp - iRSelSm) / 10; + tofCluster->SetBeamRefId(iRSelTyp); // define Beam reference counter + tofCluster->SetBeamRefSm(iRSelSm); + tofCluster->SetBeamRefDet(iRSelRpc); + tofCluster->SetBeamAddRefMul(-1); + tofCluster->SetBeamRefMulMax(3); + Int_t iSel2in = iSel2; + Int_t iSel2Rpc = iSel2 % 10; + iSel2 = (iSel2 - iSel2Rpc) / 10; + Int_t iSel2Sm = iSel2 % 10; + iSel2 = (iSel2 - iSel2Sm) / 10; + if (iSel2 > -1) { + tofCluster->SetSel2Id(iSel2); + tofCluster->SetSel2Sm(iSel2Sm); + tofCluster->SetSel2Rpc(iSel2Rpc); + } + Int_t iRef = iSet % 1000; + Int_t iDut = (iSet - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + tofCluster->SetDutId(iDut); + tofCluster->SetDutSm(iDutSm); + tofCluster->SetDutRpc(iDutRpc); + + Int_t iRefRpc = iRef % 10; + iRef = (iRef - iRefRpc) / 10; + Int_t iRefSm = iRef % 10; + iRef = (iRef - iRefSm) / 10; + + tofCluster->SetSelId(iRef); + tofCluster->SetSelSm(iRefSm); + tofCluster->SetSelRpc(iRefRpc); + + run->AddTask(tofCluster); + std::cout << "-I- " << myName << ": Added task " << tofCluster->GetName() << std::endl; + } break; + + default: { + ; + } + } + // ------------------------------------------------------------------------- + + // ========================================================================= + // === Tof Tracking === + // ========================================================================= + + cout << "<I> Initialize Tof tracker by ini_trks" << endl; + TString cTrkFile = Form("%s/%s_tofFindTracks.hst.root", TofFileFolder.Data(), cCalId.Data()); + + // ----- Local selection variables -------------------------------------- + + Int_t iRef = iSel % 1000; + Int_t iDut = (iSel - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + Int_t iBucRpc = 0; + + // ========================================================================= + // === Tracking === + // ========================================================================= + + //if (doTofTracking) + { + CbmTofTrackFinder* tofTrackFinder = new CbmTofTrackFinderNN(); + tofTrackFinder->SetMaxTofTimeDifference(0.2); // in ns/cm + Int_t TrackerPar = 0; + switch (TrackerPar) { + case 0: // for full mTof setup + tofTrackFinder->SetTxLIM(0.3); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.3); // max dev from mean slope dy/dz + tofTrackFinder->SetTxMean(0.); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.); // mean slope dy/dz + break; + case 1: // for double stack test counters + tofTrackFinder->SetTxMean(0.21); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.18); // mean slope dy/dz + tofTrackFinder->SetTxLIM(0.15); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.18); // max dev from mean slope dy/dz + break; + } + + CbmTofTrackFitter* tofTrackFitter = new CbmTofTrackFitterKF(0, 211); + TFitter* MyFit = new TFitter(1); // initialize Minuit + tofTrackFinder->SetFitter(tofTrackFitter); + CbmTofFindTracks* tofFindTracks = new CbmTofFindTracks("TOF Track Finder"); + tofFindTracks->UseFinder(tofTrackFinder); + tofFindTracks->UseFitter(tofTrackFitter); + tofFindTracks->SetCalOpt(iCalOpt); // 1 - update offsets, 2 - update walk, 0 - bypass + tofFindTracks->SetCorMode(iGenCor); // valid options: 0,1,2,3,4,5,6, 10 - 19 + tofFindTracks->SetTtTarg(0.042); // target value Mar2021, after T0 fix (double stack run 1058) + tofFindTracks->SetCalParFileName(cTrkFile); // Tracker parameter value file name + tofFindTracks->SetBeamCounter(5, 0, 0); // default beam counter + tofFindTracks->SetR0Lim(20.); + tofFindTracks->SetStationMaxHMul(30); // Max Hit Multiplicity in any used station + + tofFindTracks->SetT0MAX(dScalFac); // in ns + tofFindTracks->SetSIGT(0.08); // default in ns + tofFindTracks->SetSIGX(0.3); // default in cm + tofFindTracks->SetSIGY(0.45); // default in cm + tofFindTracks->SetSIGZ(0.05); // default in cm + tofFindTracks->SetUseSigCalib(bUseSigCalib); // ignore resolutions in CalPar file + tofTrackFinder->SetSIGLIM(dChi2Lim2 * 2.); // matching window in multiples of chi2 + tofTrackFinder->SetChiMaxAccept(dChi2Lim2); // max tracklet chi2 + + Int_t iMinNofHits = -1; + Int_t iNStations = 0; + Int_t iNReqStations = 3; + + switch (iTrackingSetup) { + case 0: // bypass mode + iMinNofHits = -1; + iNStations = 1; + tofFindTracks->SetStation(0, 5, 0, 0); // Diamond + break; + + case 1: // for calibration mode of full setup + { + Double_t dTsig = dScalFac * 0.03; + tofFindTracks->SetSIGT(dTsig); // allow for variable deviations in ns + } + iMinNofHits = 3; + iNStations = 32; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + tofFindTracks->SetStation(16, 0, 4, 0); + tofFindTracks->SetStation(17, 0, 3, 0); + tofFindTracks->SetStation(18, 0, 4, 1); + tofFindTracks->SetStation(19, 0, 3, 1); + tofFindTracks->SetStation(20, 0, 4, 2); + tofFindTracks->SetStation(21, 0, 3, 2); + tofFindTracks->SetStation(22, 0, 4, 3); + tofFindTracks->SetStation(23, 0, 3, 3); + tofFindTracks->SetStation(24, 0, 4, 4); + tofFindTracks->SetStation(25, 0, 3, 4); + tofFindTracks->SetStation(26, 9, 0, 0); + tofFindTracks->SetStation(27, 9, 1, 0); + tofFindTracks->SetStation(28, 9, 0, 1); + tofFindTracks->SetStation(29, 9, 1, 1); + tofFindTracks->SetStation(30, 6, 0, 0); + tofFindTracks->SetStation(31, 6, 0, 1); + break; + + case 11: // for calibration mode of 2-stack & test counters + iMinNofHits = 4; + iNStations = 9; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 9, 0, 0); + tofFindTracks->SetStation(2, 9, 1, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 9, 1, 1); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(6, 0, 4, 0); + tofFindTracks->SetStation(7, 0, 3, 2); + tofFindTracks->SetStation(8, 5, 0, 0); + break; + + case 2: + iMinNofHits = 5; + iNStations = 28; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 0, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 2, 1); + tofFindTracks->SetStation(4, 0, 0, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 2, 3); + tofFindTracks->SetStation(7, 0, 0, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 2, 0); + tofFindTracks->SetStation(10, 0, 0, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 2, 4); + tofFindTracks->SetStation(13, 0, 0, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 4, 0); + tofFindTracks->SetStation(16, 0, 3, 0); + tofFindTracks->SetStation(17, 0, 4, 1); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 2); + tofFindTracks->SetStation(20, 0, 3, 2); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 3); + tofFindTracks->SetStation(23, 0, 4, 4); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 9, 0, 0); + tofFindTracks->SetStation(26, 9, 0, 1); + tofFindTracks->SetStation(27, 5, 0, 0); + break; + + case 3: + iMinNofHits = 3; + iNStations = 16; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + + /* + tofFindTracks->SetStation(16, 0, 3, 2); + tofFindTracks->SetStation(17, 0, 4, 2); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 1); + tofFindTracks->SetStation(20, 0, 3, 3); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 0); + tofFindTracks->SetStation(23, 0, 4, 0); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 0, 4, 4); + */ + break; + + case 4: // for USTC evaluation (dut=910,911) + iMinNofHits = 4; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 0, 3, 1); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 5, 0, 0); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 14: + iMinNofHits = 3; + iNStations = 15; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(0, 0, 2, 1); + tofFindTracks->SetStation(1, 0, 1, 1); + tofFindTracks->SetStation(2, 0, 0, 1); + tofFindTracks->SetStation(0, 0, 2, 0); + tofFindTracks->SetStation(1, 0, 1, 0); + tofFindTracks->SetStation(2, 0, 0, 0); + tofFindTracks->SetStation(0, 0, 2, 3); + tofFindTracks->SetStation(1, 0, 1, 3); + tofFindTracks->SetStation(2, 0, 0, 3); + tofFindTracks->SetStation(0, 0, 2, 4); + tofFindTracks->SetStation(1, 0, 1, 4); + tofFindTracks->SetStation(2, 0, 0, 4); + break; + + case 5: // for calibration of 2-stack and add-on counters (STAR2, BUC) + iMinNofHits = 3; + iNStations = 7; + iNReqStations = 4; + tofFindTracks->SetStation(6, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 9, 0, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 6, 0, 0); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(0, 5, 0, 0); + break; + + case 6: // for double stack USTC counter evaluation + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 6, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 7: // for double stack USTC counter evaluation + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 6, 0, 0); + tofFindTracks->SetStation(3, iDut, iDutSm, iDutRpc); + break; + + case 8: // evaluation of add-on counters (BUC) + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 9, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 9: // calibration of Star2 + iMinNofHits = 4; + iNStations = 5; + iNReqStations = 5; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(1, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + break; + + case 10: + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(3, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(1, 0, 2, 2); + break; + + default: + cout << "Tracking setup " << iTrackingSetup << " not implemented " << endl; + return 1; + ; + } + tofFindTracks->SetMinNofHits(iMinNofHits); + tofFindTracks->SetNStations(iNStations); + tofFindTracks->SetNReqStations(iNReqStations); + tofFindTracks->PrintSetup(); + std::cout << "MinNofHitsPerTrack: " << iMinNofHits << std::endl; + run->AddTask(tofFindTracks); + } + // ------------------------------------------------------------------------ + + + // ========================================================================= + // === RICH QA === + // ========================================================================= + + CbmRichMCbmQaReal* qaTask = new CbmRichMCbmQaReal(); + if (taskId < 0) { qaTask->SetOutputDir(Form("result_run%d", runId)); } + else { + qaTask->SetOutputDir(Form("result_run%d_%05d", runId, taskId)); + } + //qaTask->XOffsetHistos(+25.0); + qaTask->XOffsetHistos(-4.1); + if (runId > 2351) qaTask->XOffsetHistos(0.0); + qaTask->SetMaxNofDrawnEvents(100); + qaTask->SetTotRich(23.7, 30.0); + qaTask->SetTriggerRichHits(eb_TriggerMinNumberRich); + qaTask->SetTriggerTofHits(0); // eb_TriggerMinNumberTof); + qaTask->SetSEDisplayRingOnly(); + run->AddTask(qaTask); + // ------------------------------------------------------------------------ + + + // ----- Parameter database -------------------------------------------- + std::cout << std::endl << std::endl << "-I- " << myName << ": Set runtime DB" << std::endl; + FairRuntimeDb* rtdb = run->GetRuntimeDb(); + Bool_t kParameterMerged = kTRUE; + FairParRootFileIo* parIo1 = new FairParRootFileIo(kParameterMerged); + FairParAsciiFileIo* parIo2 = new FairParAsciiFileIo(); + // parIo1->open(parFile.c_str(), "UPDATE"); + parIo2->open(parFileList, "in"); + parIo2->print(); + rtdb->setFirstInput(parIo2); + // ------------------------------------------------------------------------ + + + // ----- Run initialisation ------------------------------------------- + std::cout << std::endl << "-I- " << myName << ": Initialise run" << std::endl; + run->Init(); + // ------------------------------------------------------------------------ + + + // ----- Database update ---------------------------------------------- + rtdb->setOutput(parIo1); + rtdb->saveOutput(); + rtdb->print(); + rtdb->printParamContexts(); + // ------------------------------------------------------------------------ + + + //--- House Keeping ------------------------------------------------------- + // print all important infos in a file + std::ofstream outfile; + if (taskId < 0) { outfile.open(Form("result_run%d/run_info.dat", runId)); } + else { + outfile.open(Form("result_run%d_%05d/run_info.dat", runId, taskId)); + } + // write inputted data into the file. + outfile << "Run: " << runId << std::endl; + outfile << "Events: " << nEvents << std::endl; + // outfile << "parFile: " << parFile << std::endl; + outfile << "digiFile: " << digiFile << std::endl; + outfile << "recoFile: " << recoFile << std::endl; + //outfile << "Geometry: " << geoFile << std::endl; + outfile << "TrackCalParFile: " << TofFileFolder << cCalId << std::endl; + outfile << "TofClusterFile :" << TofFileFolder + cFname << std::endl; + outfile << "TofOutput :" << cFname << std::endl << std::endl; + outfile << "Trigger:" << std::endl; + outfile << " fixedTimeWindow :" << eb_fixedTimeWindow << std::endl; + outfile << " MinNumberT0 :" << eb_TriggerMinNumberT0 << std::endl; + outfile << " MinNumberSts :" << eb_TriggerMinNumberSts << std::endl; + outfile << " MinNumberMuch :" << eb_TriggerMinNumberMuch << std::endl; + outfile << " MinNumberTof :" << eb_TriggerMinNumberTof << std::endl; + outfile << " MinNumberRich :" << eb_TriggerMinNumberRich << std::endl; + outfile.close(); + // ------------------------------------------------------------------------ + + + // ----- Start run ---------------------------------------------------- + std::cout << std::endl << std::endl; + std::cout << "-I- " << myName << ": Starting run" << std::endl; + run->Run(0, nEvents); + // ------------------------------------------------------------------------ + + + // ----- Finish ------------------------------------------------------- + timer.Stop(); + std::cout << std::endl << std::endl; + std::cout << "Macro finished succesfully." << std::endl; + std::cout << "Output file is " << recoFile << std::endl; + // std::cout << "Parameter file is " << parFile << std::endl; + std::cout << "Real time " << timer.RealTime() << " s, CPU time " << timer.CpuTime() << " s" << std::endl; + std::cout << "Test passed" << std::endl << "All ok" << std::endl; + + // ----- Resource monitoring ------------------------------------------ + // if ( hasFairMonitor /*Has_Fair_Monitor()*/ ) { // FairRoot Version >= 15.11 + // // Extract the maximal used memory an add is as Dart measurement + // // This line is filtered by CTest and the value send to CDash + // FairSystemInfo sysInfo; + // Float_t maxMemory=sysInfo.GetMaxMemory(); + // std::cout << "<DartMeasurement name=\"MaxMemory\" type=\"numeric/double\">"; + // std::cout << maxMemory; + // std::cout << "</DartMeasurement>" << std::endl; + // + // Float_t cpuUsage=ctime/rtime; + // std::cout << "<DartMeasurement name=\"CpuLoad\" type=\"numeric/double\">"; + // std::cout << cpuUsage; + // std::cout << "</DartMeasurement>" << std::endl; + // + // FairMonitor* tempMon = FairMonitor::GetMonitor(); + // tempMon->Print(); + // } +} + +void save_hst(TString cstr = "status.hst.root", Bool_t bROOT = kFALSE) +{ + cout << "save all histograms to file " << cstr.Data() << endl; + TList* tList(NULL); + if (bROOT) { tList = gROOT->GetList(); } + else { + tList = gDirectory->GetList(); + } + TIter next(tList); + // Write objects to the file + TFile* fHist = new TFile(cstr, "RECREATE"); + { + TObject* obj; + while ((obj = (TObject*) next())) { + if (obj->InheritsFrom(TH1::Class()) || obj->InheritsFrom(TEfficiency::Class())) { obj->Write(); } + } + } + // fHist->ls(); + fHist->Close(); +} diff --git a/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_T0refnoTof.C b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_T0refnoTof.C new file mode 100644 index 0000000000..37b0e0535b --- /dev/null +++ b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_T0refnoTof.C @@ -0,0 +1,794 @@ +/* Copyright (C) 2020 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt + SPDX-License-Identifier: GPL-3.0-only + Authors: Florian Uhlig [committer] */ + +void run_reco_mcbm_real_wToF_mar22_iron_T0refnoTof(const unsigned int runId = 2160, // used for the output folder + int nEvents = 10, const int taskId = 11, + const string srcfolder = "/data/cbmroot/mcbmsource/macro/run/data/") +{ + // ----- File names -------------------------------------------------- + const string& digiFile = Form("%s/%4d.digi.root", srcfolder.c_str(), runId); + + const string& recoFile = Form("reco_mcbm_mar22_iron_%d.root", runId); + //TString setup = "mcbm_beam_2021_07_surveyed"; + TString setup = "mcbm_beam_2022_03_22_iron"; + // ----------------------------------------------------------------------- + + + // ----- EventBuilder Settings----------------------------------------- + const Double_t eb_fixedTimeWindow {200.}; + const Int_t eb_TriggerMinNumberT0 {1}; + const Int_t eb_TriggerMinNumberSts {0}; + const Int_t eb_TriggerMinNumberMuch {0}; + const Int_t eb_TriggerMinNumberTof {4}; + const Int_t eb_TriggerMinNumberRich {5}; + // ----------------------------------------------------------------------- + + + // ----- TOF defaults -------------------------------------------------- + Int_t calMode = 93; + Int_t calSel = 1; + Int_t calSm = 0; + Int_t RefSel = 0; + Double_t dDeadtime = 50.; + Int_t iSel2 = 20; + + // Tracking + Int_t iSel = 1; // 910041; + Int_t iTrackingSetup = 2; + Int_t iGenCor = 1; + Double_t dScalFac = 1.; + Double_t dChi2Lim2 = 500.; + Bool_t bUseSigCalib = kFALSE; + Int_t iCalOpt = 0; + Int_t iTrkPar = 3; + // ----------------------------------------------------------------------- + + + // ----- TOF Settings -------------------------------------------------- + TString cCalId = "490.100.5.0"; + if (runId >= 759) cCalId = "759.100.4.0"; + if (runId >= 812) cCalId = "831.100.4.0"; + if (runId >= 1588) cCalId = "1588.50.6.0"; + if (runId >= 2160) cCalId = "2160.50.4.0"; + Int_t iCalSet = 30040500; // calibration settings + if (runId >= 759) iCalSet = 10020500; + if (runId >= 812) iCalSet = 10020500; + if (runId >= 1588) iCalSet = 12002002; + if (runId >= 2160) iCalSet = 700900500; + + Double_t Tint = 100.; // coincidence time interval + Int_t iTrackMode = 2; // 2 for TofTracker + const Int_t iTofCluMode = 1; + Bool_t doTofTracking = kTRUE; + // ----------------------------------------------------------------------- + + + // ----- Fair logger --------------------------------------------------- + FairLogger::GetLogger()->SetLogScreenLevel("INFO"); + FairLogger::GetLogger()->SetLogVerbosityLevel("LOW"); + TTree::SetMaxTreeSize(90000000000); + // ----------------------------------------------------------------------- + + TString myName = "run_reco_mcbm_real"; + TString srcDir = gSystem->Getenv("VMCWORKDIR"); // top source directory + TString workDir = gSystem->Getenv("VMCWORKDIR"); + + remove(recoFile.c_str()); + + + // ----- Load the geometry setup ------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Loading setup " << setup << std::endl; + CbmSetup* geoSetup = CbmSetup::Instance(); + geoSetup->LoadSetup(setup); + // You can modify the pre-defined setup by using + // CbmSetup::Instance()->RemoveModule(ESystemId) or + // CbmSetup::Instance()->SetModule(ESystemId, const char*, Bool_t) or + //CbmSetup::Instance()->SetActive(ESystemId, Bool_t) + geoSetup->SetActive(ECbmModuleId::kMvd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kSts, kFALSE); + geoSetup->SetActive(ECbmModuleId::kMuch, kFALSE); + geoSetup->SetActive(ECbmModuleId::kRich, kTRUE); + geoSetup->SetActive(ECbmModuleId::kTrd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTrd2d, kFALSE); + geoSetup->SetActive(ECbmModuleId::kPsd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTof, kTRUE); + // ----------------------------------------------------------------------- + + //TString TofFileFolder = Form("/lustre/cbm/users/nh/CBM/cbmroot/trunk/macro/beamtime/mcbm2020/%s", cCalId.Data()); + //TString TofFileFolder = Form("/data/cbmroot/files/tofCal/mTofCriPar2/%s", cCalId.Data()); + TString TofFileFolder = Form("/data/cbmroot/files/tofCal/%s", cCalId.Data()); + + std::cout << std::endl << "-I- " << myName << ": Defining parameter files " << std::endl; + TList* parFileList = new TList(); + + + //-----------------------------------------------// + // TString FId = cCalId; + // TString TofGeo = "v19b_mcbm"; //v18m_mCbm + // TString TofGeo = "v20a_mcbm"; //v18m_mCbm + + + // ----- TOF digitisation parameters ------------------------------------- + TString geoTag; + TString geoFile; + if (geoSetup->IsActive(ECbmModuleId::kTof)) { + geoSetup->GetGeoTag(ECbmModuleId::kTof, geoTag); + TObjString* tofBdfFile = new TObjString(srcDir + "/parameters/tof/tof_" + geoTag + ".digibdf.par"); + //TObjString* tofBdfFile = new TObjString("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + parFileList->Add(tofBdfFile); + // parFileList->Add("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + std::cout << "-I- " << myName << ": Using parameter file " << tofBdfFile->GetString() << std::endl; + + //geoFile = srcDir + "/macro/mcbm/data/" + setup + ".geo.root"; + geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2022_03_22_iron.geo.root"; + TFile* fgeo = new TFile(geoFile); + TGeoManager* geoMan = (TGeoManager*) fgeo->Get("FAIRGeom"); + if (NULL == geoMan) { + cout << "<E> FAIRGeom not found in geoFile " << geoFile.Data() << endl; + return; + } + } + + // ----- Timer -------------------------------------------------------- + TStopwatch timer; + timer.Start(); + // ------------------------------------------------------------------------ + + + // ---- Debug option ------------------------------------------------- + gDebug = 0; + // ------------------------------------------------------------------------ + + gROOT->LoadMacro("save_hst.C"); + + + // ----- Input file --------------------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Using input file " << digiFile << std::endl; + // ------------------------------------------------------------------------ + + // ----- FairRunAna --------------------------------------------------- + FairRunAna* run = new FairRunAna(); + FairFileSource* inputSource = new FairFileSource(digiFile.c_str()); + run->SetSource(inputSource); + run->SetOutputFile(recoFile.c_str()); + + + // ========================================================================= + // === Alignment Correction === + // ========================================================================= + // (Fairsoft Apr21p2 or newer is needed) + + + TString alignmentMatrixFileName = "AlignmentMatrices_" + setup + ".root"; + if (alignmentMatrixFileName.Length() != 0) { + std::cout << "-I- " << myName << ": Applying alignment for file " << alignmentMatrixFileName << std::endl; + + // Define the basic structure which needs to be filled with information + // This structure is stored in the output file and later passed to the + // FairRoot framework to do the (miss)alignment + std::map<std::string, TGeoHMatrix>* matrices {nullptr}; + + // read matrices from disk + LOG(info) << "Filename: " << alignmentMatrixFileName; + TFile* misalignmentMatrixRootfile = new TFile(alignmentMatrixFileName, "READ"); + if (misalignmentMatrixRootfile->IsOpen()) { + gDirectory->GetObject("MisalignMatrices", matrices); + misalignmentMatrixRootfile->Close(); + } + else { + LOG(error) << "Could not open file " << alignmentMatrixFileName << "\n Exiting"; + exit(1); + } + + if (matrices) { run->AddAlignmentMatrices(*matrices); } + else { + LOG(error) << "Alignment required but no matrices found." + << "\n Exiting"; + exit(1); + } + } + // ------------------------------------------------------------------------ + + + // --------------------event builder--------------------------------------- + CbmTaskBuildRawEvents* evBuildRaw = new CbmTaskBuildRawEvents(); + + //Choose between NoOverlap, MergeOverlap, AllowOverlap + evBuildRaw->SetEventOverlapMode(EOverlapModeRaw::AllowOverlap); + + // Remove detectors where digis not found + if (!geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->RemoveDetector(kRawEventBuilderDetRich); + if (!geoSetup->IsActive(ECbmModuleId::kMuch)) evBuildRaw->RemoveDetector(kRawEventBuilderDetMuch); + if (!geoSetup->IsActive(ECbmModuleId::kPsd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetPsd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd2d)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd2D); + if (!geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->RemoveDetector(kRawEventBuilderDetSts); + if (!geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTof); + + // Set TOF as reference detector + //evBuildRaw->SetReferenceDetector(kRawEventBuilderDetTof); + evBuildRaw->SetReferenceDetector(kRawEventBuilderDetT0); + + // void SetTsParameters(double TsStartTime, double TsLength, double TsOverLength): TsStartTime=0, TsLength=256ms in 2021, TsOverLength=TS overlap, not used in mCBM2021 + evBuildRaw->SetTsParameters(0.0, 1.28e8, 0.0); + + // if (geoSetup->IsActive(ECbmModuleId::kTof)) + // evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kTof, eb_TriggerMinNumberTof); + + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kT0, eb_TriggerMinNumberT0); + + // if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kTof, -1); + + //evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kSts, eb_TriggerMinNumberSts); + //evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kSts, -1); + + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kRich, eb_TriggerMinNumberRich); + evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kRich, -1); + + evBuildRaw->SetTriggerWindow(ECbmModuleId::kT0, -50, 50); + if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTof, -50, 50); + if (geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kSts, -50, 50); + if (geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTrd, -200, 200); + if (geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kRich, -50, 100); + + run->AddTask(evBuildRaw); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction of RICH Hits --------------- + CbmRichMCbmHitProducer* hitProd = new CbmRichMCbmHitProducer(); + hitProd->SetMappingFile("mRICH_Mapping_vert_20190318_elView.geo"); + hitProd->setToTLimits(23.7, 30.0); + hitProd->applyToTCut(); + run->AddTask(hitProd); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in RICh -> Finding of Rings --------------- + CbmRichReconstruction* richReco = new CbmRichReconstruction(); + richReco->UseMCbmSetup(); + run->AddTask(richReco); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in TOF ---------------------------------- + TString cFname; + switch (iTofCluMode) { + case 1: { + CbmTofEventClusterizer* tofCluster = new CbmTofEventClusterizer("TOF Event Clusterizer", 0, 1); + // cFname=Form("/%s_set%09d_%02d_%01dtofClust.hst.root",cCalId.Data(),iCalSet,calMode,calSel); + // cFname = Form("/%s_set%09d_%02d_%01d_noWalk_tofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + cFname = Form("/%s_set%09d_%02d_%01dtofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + tofCluster->SetCalParFileName(TofFileFolder + cFname); + tofCluster->SetCalMode(calMode); + tofCluster->SetCalSel(calSel); + tofCluster->SetCaldXdYMax(300.); // geometrical matching window in cm + tofCluster->SetCalCluMulMax(3.); // Max Counter Cluster Multiplicity for filling calib histos + tofCluster->SetCalRpc(calSm); // select detector for calibration update + tofCluster->SetTRefId(RefSel); // reference trigger for offset calculation + tofCluster->SetTotMax(20.); // Tot upper limit for walk corection + tofCluster->SetTotMin(0.); // Tot lower limit for walk correction + tofCluster->SetTotPreRange(5.); // effective lower Tot limit in ns from peak position + tofCluster->SetTotMean(5.); // Tot calibration target value in ns + tofCluster->SetMaxTimeDist(1.0); // default cluster range in ns + tofCluster->SetDelTofMax(50.); // acceptance range for cluster distance in ns (!) + tofCluster->SetSel2MulMax(3); // limit Multiplicity in 2nd selector + tofCluster->SetChannelDeadtime(dDeadtime); // artificial deadtime in ns + tofCluster->SetEnableAvWalk(kFALSE); + // tofCluster->SetEnableMatchPosScaling(kFALSE); // turn off projection to nominal target + tofCluster->SetYFitMin(1.E4); + tofCluster->SetToDAv(0.04); + tofCluster->SetIdMode(1); // calibrate on module level + tofCluster->SetTRefDifMax(2.0); // in ns + tofCluster->PosYMaxScal(0.75); //in % of length + Int_t iBRef = iCalSet % 1000; + Int_t iSet = (iCalSet - iBRef) / 1000; + Int_t iRSel = 0; + Int_t iRSelTyp = 0; + Int_t iRSelSm = 0; + Int_t iRSelRpc = 0; + iRSel = iBRef; // use diamond + Int_t iRSelin = iRSel; + iRSelRpc = iRSel % 10; + iRSelTyp = (iRSel - iRSelRpc) / 10; + iRSelSm = iRSelTyp % 10; + iRSelTyp = (iRSelTyp - iRSelSm) / 10; + tofCluster->SetBeamRefId(iRSelTyp); // define Beam reference counter + tofCluster->SetBeamRefSm(iRSelSm); + tofCluster->SetBeamRefDet(iRSelRpc); + tofCluster->SetBeamAddRefMul(-1); + tofCluster->SetBeamRefMulMax(3); + Int_t iSel2in = iSel2; + Int_t iSel2Rpc = iSel2 % 10; + iSel2 = (iSel2 - iSel2Rpc) / 10; + Int_t iSel2Sm = iSel2 % 10; + iSel2 = (iSel2 - iSel2Sm) / 10; + if (iSel2 > -1) { + tofCluster->SetSel2Id(iSel2); + tofCluster->SetSel2Sm(iSel2Sm); + tofCluster->SetSel2Rpc(iSel2Rpc); + } + Int_t iRef = iSet % 1000; + Int_t iDut = (iSet - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + tofCluster->SetDutId(iDut); + tofCluster->SetDutSm(iDutSm); + tofCluster->SetDutRpc(iDutRpc); + + Int_t iRefRpc = iRef % 10; + iRef = (iRef - iRefRpc) / 10; + Int_t iRefSm = iRef % 10; + iRef = (iRef - iRefSm) / 10; + + tofCluster->SetSelId(iRef); + tofCluster->SetSelSm(iRefSm); + tofCluster->SetSelRpc(iRefRpc); + + run->AddTask(tofCluster); + std::cout << "-I- " << myName << ": Added task " << tofCluster->GetName() << std::endl; + } break; + + default: { + ; + } + } + // ------------------------------------------------------------------------- + + // ========================================================================= + // === Tof Tracking === + // ========================================================================= + + cout << "<I> Initialize Tof tracker by ini_trks" << endl; + TString cTrkFile = Form("%s/%s_tofFindTracks.hst.root", TofFileFolder.Data(), cCalId.Data()); + + // ----- Local selection variables -------------------------------------- + + Int_t iRef = iSel % 1000; + Int_t iDut = (iSel - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + Int_t iBucRpc = 0; + + // ========================================================================= + // === Tracking === + // ========================================================================= + + //if (doTofTracking) + { + CbmTofTrackFinder* tofTrackFinder = new CbmTofTrackFinderNN(); + tofTrackFinder->SetMaxTofTimeDifference(0.2); // in ns/cm + Int_t TrackerPar = 0; + switch (TrackerPar) { + case 0: // for full mTof setup + tofTrackFinder->SetTxLIM(0.3); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.3); // max dev from mean slope dy/dz + tofTrackFinder->SetTxMean(0.); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.); // mean slope dy/dz + break; + case 1: // for double stack test counters + tofTrackFinder->SetTxMean(0.21); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.18); // mean slope dy/dz + tofTrackFinder->SetTxLIM(0.15); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.18); // max dev from mean slope dy/dz + break; + } + + CbmTofTrackFitter* tofTrackFitter = new CbmTofTrackFitterKF(0, 211); + TFitter* MyFit = new TFitter(1); // initialize Minuit + tofTrackFinder->SetFitter(tofTrackFitter); + CbmTofFindTracks* tofFindTracks = new CbmTofFindTracks("TOF Track Finder"); + tofFindTracks->UseFinder(tofTrackFinder); + tofFindTracks->UseFitter(tofTrackFitter); + tofFindTracks->SetCalOpt(iCalOpt); // 1 - update offsets, 2 - update walk, 0 - bypass + tofFindTracks->SetCorMode(iGenCor); // valid options: 0,1,2,3,4,5,6, 10 - 19 + tofFindTracks->SetTtTarg(0.042); // target value Mar2021, after T0 fix (double stack run 1058) + tofFindTracks->SetCalParFileName(cTrkFile); // Tracker parameter value file name + tofFindTracks->SetBeamCounter(5, 0, 0); // default beam counter + tofFindTracks->SetR0Lim(20.); + tofFindTracks->SetStationMaxHMul(30); // Max Hit Multiplicity in any used station + + tofFindTracks->SetT0MAX(dScalFac); // in ns + tofFindTracks->SetSIGT(0.08); // default in ns + tofFindTracks->SetSIGX(0.3); // default in cm + tofFindTracks->SetSIGY(0.45); // default in cm + tofFindTracks->SetSIGZ(0.05); // default in cm + tofFindTracks->SetUseSigCalib(bUseSigCalib); // ignore resolutions in CalPar file + tofTrackFinder->SetSIGLIM(dChi2Lim2 * 2.); // matching window in multiples of chi2 + tofTrackFinder->SetChiMaxAccept(dChi2Lim2); // max tracklet chi2 + + Int_t iMinNofHits = -1; + Int_t iNStations = 0; + Int_t iNReqStations = 3; + + switch (iTrackingSetup) { + case 0: // bypass mode + iMinNofHits = -1; + iNStations = 1; + tofFindTracks->SetStation(0, 5, 0, 0); // Diamond + break; + + case 1: // for calibration mode of full setup + { + Double_t dTsig = dScalFac * 0.03; + tofFindTracks->SetSIGT(dTsig); // allow for variable deviations in ns + } + iMinNofHits = 3; + iNStations = 32; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + tofFindTracks->SetStation(16, 0, 4, 0); + tofFindTracks->SetStation(17, 0, 3, 0); + tofFindTracks->SetStation(18, 0, 4, 1); + tofFindTracks->SetStation(19, 0, 3, 1); + tofFindTracks->SetStation(20, 0, 4, 2); + tofFindTracks->SetStation(21, 0, 3, 2); + tofFindTracks->SetStation(22, 0, 4, 3); + tofFindTracks->SetStation(23, 0, 3, 3); + tofFindTracks->SetStation(24, 0, 4, 4); + tofFindTracks->SetStation(25, 0, 3, 4); + tofFindTracks->SetStation(26, 9, 0, 0); + tofFindTracks->SetStation(27, 9, 1, 0); + tofFindTracks->SetStation(28, 9, 0, 1); + tofFindTracks->SetStation(29, 9, 1, 1); + tofFindTracks->SetStation(30, 6, 0, 0); + tofFindTracks->SetStation(31, 6, 0, 1); + break; + + case 11: // for calibration mode of 2-stack & test counters + iMinNofHits = 4; + iNStations = 9; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 9, 0, 0); + tofFindTracks->SetStation(2, 9, 1, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 9, 1, 1); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(6, 0, 4, 0); + tofFindTracks->SetStation(7, 0, 3, 2); + tofFindTracks->SetStation(8, 5, 0, 0); + break; + + case 2: + iMinNofHits = 5; + iNStations = 28; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 0, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 2, 1); + tofFindTracks->SetStation(4, 0, 0, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 2, 3); + tofFindTracks->SetStation(7, 0, 0, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 2, 0); + tofFindTracks->SetStation(10, 0, 0, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 2, 4); + tofFindTracks->SetStation(13, 0, 0, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 4, 0); + tofFindTracks->SetStation(16, 0, 3, 0); + tofFindTracks->SetStation(17, 0, 4, 1); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 2); + tofFindTracks->SetStation(20, 0, 3, 2); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 3); + tofFindTracks->SetStation(23, 0, 4, 4); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 9, 0, 0); + tofFindTracks->SetStation(26, 9, 0, 1); + tofFindTracks->SetStation(27, 5, 0, 0); + break; + + case 3: + iMinNofHits = 3; + iNStations = 16; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + + /* + tofFindTracks->SetStation(16, 0, 3, 2); + tofFindTracks->SetStation(17, 0, 4, 2); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 1); + tofFindTracks->SetStation(20, 0, 3, 3); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 0); + tofFindTracks->SetStation(23, 0, 4, 0); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 0, 4, 4); + */ + break; + + case 4: // for USTC evaluation (dut=910,911) + iMinNofHits = 4; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 0, 3, 1); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 5, 0, 0); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 14: + iMinNofHits = 3; + iNStations = 15; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(0, 0, 2, 1); + tofFindTracks->SetStation(1, 0, 1, 1); + tofFindTracks->SetStation(2, 0, 0, 1); + tofFindTracks->SetStation(0, 0, 2, 0); + tofFindTracks->SetStation(1, 0, 1, 0); + tofFindTracks->SetStation(2, 0, 0, 0); + tofFindTracks->SetStation(0, 0, 2, 3); + tofFindTracks->SetStation(1, 0, 1, 3); + tofFindTracks->SetStation(2, 0, 0, 3); + tofFindTracks->SetStation(0, 0, 2, 4); + tofFindTracks->SetStation(1, 0, 1, 4); + tofFindTracks->SetStation(2, 0, 0, 4); + break; + + case 5: // for calibration of 2-stack and add-on counters (STAR2, BUC) + iMinNofHits = 3; + iNStations = 7; + iNReqStations = 4; + tofFindTracks->SetStation(6, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 9, 0, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 6, 0, 0); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(0, 5, 0, 0); + break; + + case 6: // for double stack USTC counter evaluation + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 6, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 7: // for double stack USTC counter evaluation + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 6, 0, 0); + tofFindTracks->SetStation(3, iDut, iDutSm, iDutRpc); + break; + + case 8: // evaluation of add-on counters (BUC) + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 9, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 9: // calibration of Star2 + iMinNofHits = 4; + iNStations = 5; + iNReqStations = 5; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(1, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + break; + + case 10: + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(3, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(1, 0, 2, 2); + break; + + default: + cout << "Tracking setup " << iTrackingSetup << " not implemented " << endl; + return 1; + ; + } + tofFindTracks->SetMinNofHits(iMinNofHits); + tofFindTracks->SetNStations(iNStations); + tofFindTracks->SetNReqStations(iNReqStations); + tofFindTracks->PrintSetup(); + std::cout << "MinNofHitsPerTrack: " << iMinNofHits << std::endl; + run->AddTask(tofFindTracks); + } + // ------------------------------------------------------------------------ + + + // ========================================================================= + // === RICH QA === + // ========================================================================= + + CbmRichMCbmQaReal* qaTask = new CbmRichMCbmQaReal(); + if (taskId < 0) { qaTask->SetOutputDir(Form("result_run%d", runId)); } + else { + qaTask->SetOutputDir(Form("result_run%d_%05d", runId, taskId)); + } + //qaTask->XOffsetHistos(+25.0); + qaTask->XOffsetHistos(-4.1); + qaTask->SetMaxNofDrawnEvents(100); + qaTask->SetTotRich(23.7, 30.0); + qaTask->SetTriggerRichHits(eb_TriggerMinNumberRich); + qaTask->SetTriggerTofHits(0); // eb_TriggerMinNumberTof); + qaTask->SetSEDisplayRingOnly(); + run->AddTask(qaTask); + // ------------------------------------------------------------------------ + + + // ----- Parameter database -------------------------------------------- + std::cout << std::endl << std::endl << "-I- " << myName << ": Set runtime DB" << std::endl; + FairRuntimeDb* rtdb = run->GetRuntimeDb(); + Bool_t kParameterMerged = kTRUE; + FairParRootFileIo* parIo1 = new FairParRootFileIo(kParameterMerged); + FairParAsciiFileIo* parIo2 = new FairParAsciiFileIo(); + // parIo1->open(parFile.c_str(), "UPDATE"); + parIo2->open(parFileList, "in"); + parIo2->print(); + rtdb->setFirstInput(parIo2); + // ------------------------------------------------------------------------ + + + // ----- Run initialisation ------------------------------------------- + std::cout << std::endl << "-I- " << myName << ": Initialise run" << std::endl; + run->Init(); + // ------------------------------------------------------------------------ + + + // ----- Database update ---------------------------------------------- + rtdb->setOutput(parIo1); + rtdb->saveOutput(); + rtdb->print(); + rtdb->printParamContexts(); + // ------------------------------------------------------------------------ + + + //--- House Keeping ------------------------------------------------------- + // print all important infos in a file + std::ofstream outfile; + if (taskId < 0) { outfile.open(Form("result_run%d/run_info.dat", runId)); } + else { + outfile.open(Form("result_run%d_%05d/run_info.dat", runId, taskId)); + } + // write inputted data into the file. + outfile << "Run: " << runId << std::endl; + outfile << "Events: " << nEvents << std::endl; + // outfile << "parFile: " << parFile << std::endl; + outfile << "digiFile: " << digiFile << std::endl; + outfile << "recoFile: " << recoFile << std::endl; + //outfile << "Geometry: " << geoFile << std::endl; + outfile << "TrackCalParFile: " << TofFileFolder << cCalId << std::endl; + outfile << "TofClusterFile :" << TofFileFolder + cFname << std::endl; + outfile << "TofOutput :" << cFname << std::endl << std::endl; + outfile << "Trigger:" << std::endl; + outfile << " fixedTimeWindow :" << eb_fixedTimeWindow << std::endl; + outfile << " MinNumberT0 :" << eb_TriggerMinNumberT0 << std::endl; + outfile << " MinNumberSts :" << eb_TriggerMinNumberSts << std::endl; + outfile << " MinNumberMuch :" << eb_TriggerMinNumberMuch << std::endl; + outfile << " MinNumberTof :" << eb_TriggerMinNumberTof << std::endl; + outfile << " MinNumberRich :" << eb_TriggerMinNumberRich << std::endl; + outfile.close(); + // ------------------------------------------------------------------------ + + + // ----- Start run ---------------------------------------------------- + std::cout << std::endl << std::endl; + std::cout << "-I- " << myName << ": Starting run" << std::endl; + run->Run(0, nEvents); + // ------------------------------------------------------------------------ + + + // ----- Finish ------------------------------------------------------- + timer.Stop(); + std::cout << std::endl << std::endl; + std::cout << "Macro finished succesfully." << std::endl; + std::cout << "Output file is " << recoFile << std::endl; + // std::cout << "Parameter file is " << parFile << std::endl; + std::cout << "Real time " << timer.RealTime() << " s, CPU time " << timer.CpuTime() << " s" << std::endl; + std::cout << "Test passed" << std::endl << "All ok" << std::endl; + + // ----- Resource monitoring ------------------------------------------ + // if ( hasFairMonitor /*Has_Fair_Monitor()*/ ) { // FairRoot Version >= 15.11 + // // Extract the maximal used memory an add is as Dart measurement + // // This line is filtered by CTest and the value send to CDash + // FairSystemInfo sysInfo; + // Float_t maxMemory=sysInfo.GetMaxMemory(); + // std::cout << "<DartMeasurement name=\"MaxMemory\" type=\"numeric/double\">"; + // std::cout << maxMemory; + // std::cout << "</DartMeasurement>" << std::endl; + // + // Float_t cpuUsage=ctime/rtime; + // std::cout << "<DartMeasurement name=\"CpuLoad\" type=\"numeric/double\">"; + // std::cout << cpuUsage; + // std::cout << "</DartMeasurement>" << std::endl; + // + // FairMonitor* tempMon = FairMonitor::GetMonitor(); + // tempMon->Print(); + // } +} + +void save_hst(TString cstr = "status.hst.root", Bool_t bROOT = kFALSE) +{ + cout << "save all histograms to file " << cstr.Data() << endl; + TList* tList(NULL); + if (bROOT) { tList = gROOT->GetList(); } + else { + tList = gDirectory->GetList(); + } + TIter next(tList); + // Write objects to the file + TFile* fHist = new TFile(cstr, "RECREATE"); + { + TObject* obj; + while ((obj = (TObject*) next())) { + if (obj->InheritsFrom(TH1::Class()) || obj->InheritsFrom(TEfficiency::Class())) { obj->Write(); } + } + } + // fHist->ls(); + fHist->Close(); +} diff --git a/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_Tofref_wT0.C b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_Tofref_wT0.C new file mode 100644 index 0000000000..9b5c0d5d1c --- /dev/null +++ b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_mar22_iron_Tofref_wT0.C @@ -0,0 +1,801 @@ +/* Copyright (C) 2020 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt + SPDX-License-Identifier: GPL-3.0-only + Authors: Florian Uhlig [committer] */ + +void run_reco_mcbm_real_wToF_mar22_iron_Tofref_wT0(const unsigned int runId = 2160, // used for the output folder + int nEvents = 10, const int taskId = 16, + const string srcfolder = "/data/cbmroot/mcbmsource/macro/run/data/") +{ + // ----- File names -------------------------------------------------- + const string& digiFile = Form("%s/%4d.digi.root", srcfolder.c_str(), runId); + + const string& recoFile = Form("reco_mcbm_mar22_iron_%d.root", runId); + //TString setup = "mcbm_beam_2021_07_surveyed"; + TString setup = "mcbm_beam_2022_03_22_iron"; + // ----------------------------------------------------------------------- + + + // ----- EventBuilder Settings----------------------------------------- + const Double_t eb_fixedTimeWindow {200.}; + const Int_t eb_TriggerMinNumberT0 {1}; + const Int_t eb_TriggerMinNumberSts {0}; + const Int_t eb_TriggerMinNumberMuch {0}; + const Int_t eb_TriggerMinNumberTof {4}; + const Int_t eb_TriggerMinNumberRich {10}; + // ----------------------------------------------------------------------- + + + // ----- TOF defaults -------------------------------------------------- + Int_t calMode = 93; + Int_t calSel = 1; + Int_t calSm = 0; + Int_t RefSel = 0; + Double_t dDeadtime = 50.; + Int_t iSel2 = 20; + + // Tracking + Int_t iSel = 1; // 910041; + Int_t iTrackingSetup = 2; + Int_t iGenCor = 1; + Double_t dScalFac = 1.; + Double_t dChi2Lim2 = 500.; + Bool_t bUseSigCalib = kFALSE; + Int_t iCalOpt = 0; + Int_t iTrkPar = 3; + // ----------------------------------------------------------------------- + + + // ----- TOF Settings -------------------------------------------------- + TString cCalId = "490.100.5.0"; + if (runId >= 759) cCalId = "759.100.4.0"; + if (runId >= 812) cCalId = "831.100.4.0"; + if (runId >= 1588) cCalId = "1588.50.6.0"; + if (runId >= 2160) cCalId = "2160.50.4.0"; + Int_t iCalSet = 30040500; // calibration settings + if (runId >= 759) iCalSet = 10020500; + if (runId >= 812) iCalSet = 10020500; + if (runId >= 1588) iCalSet = 12002002; + if (runId >= 2160) iCalSet = 700900500; + + Double_t Tint = 100.; // coincidence time interval + Int_t iTrackMode = 2; // 2 for TofTracker + const Int_t iTofCluMode = 1; + Bool_t doTofTracking = kTRUE; + // ----------------------------------------------------------------------- + + + // ----- Fair logger --------------------------------------------------- + FairLogger::GetLogger()->SetLogScreenLevel("INFO"); + FairLogger::GetLogger()->SetLogVerbosityLevel("LOW"); + TTree::SetMaxTreeSize(90000000000); + // ----------------------------------------------------------------------- + + TString myName = "run_reco_mcbm_real"; + TString srcDir = gSystem->Getenv("VMCWORKDIR"); // top source directory + TString workDir = gSystem->Getenv("VMCWORKDIR"); + + remove(recoFile.c_str()); + + + // ----- Load the geometry setup ------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Loading setup " << setup << std::endl; + CbmSetup* geoSetup = CbmSetup::Instance(); + geoSetup->LoadSetup(setup); + // You can modify the pre-defined setup by using + // CbmSetup::Instance()->RemoveModule(ESystemId) or + // CbmSetup::Instance()->SetModule(ESystemId, const char*, Bool_t) or + //CbmSetup::Instance()->SetActive(ESystemId, Bool_t) + geoSetup->SetActive(ECbmModuleId::kMvd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kSts, kFALSE); + geoSetup->SetActive(ECbmModuleId::kMuch, kFALSE); + geoSetup->SetActive(ECbmModuleId::kRich, kTRUE); + geoSetup->SetActive(ECbmModuleId::kTrd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTrd2d, kFALSE); + geoSetup->SetActive(ECbmModuleId::kPsd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTof, kFALSE); + // ----------------------------------------------------------------------- + + //TString TofFileFolder = Form("/lustre/cbm/users/nh/CBM/cbmroot/trunk/macro/beamtime/mcbm2020/%s", cCalId.Data()); + //TString TofFileFolder = Form("/data/cbmroot/files/tofCal/mTofCriPar2/%s", cCalId.Data()); + TString TofFileFolder = Form("/data/cbmroot/files/tofCal/%s", cCalId.Data()); + + std::cout << std::endl << "-I- " << myName << ": Defining parameter files " << std::endl; + TList* parFileList = new TList(); + + + //-----------------------------------------------// + // TString FId = cCalId; + // TString TofGeo = "v19b_mcbm"; //v18m_mCbm + // TString TofGeo = "v20a_mcbm"; //v18m_mCbm + + + // ----- TOF digitisation parameters ------------------------------------- + TString geoTag; + TString geoFile; + + //geoFile = srcDir + "/macro/mcbm/data/" + setup + ".geo.root"; + geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2022_03_22_iron.geo.root"; + TFile* fgeo = new TFile(geoFile); + TGeoManager* geoMan = (TGeoManager*) fgeo->Get("FAIRGeom"); + if (NULL == geoMan) { + cout << "<E> FAIRGeom not found in geoFile " << geoFile.Data() << endl; + return; + } + + if (geoSetup->IsActive(ECbmModuleId::kTof)) { + geoSetup->GetGeoTag(ECbmModuleId::kTof, geoTag); + TObjString* tofBdfFile = new TObjString(srcDir + "/parameters/tof/tof_" + geoTag + ".digibdf.par"); + //TObjString* tofBdfFile = new TObjString("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + parFileList->Add(tofBdfFile); + // parFileList->Add("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + std::cout << "-I- " << myName << ": Using parameter file " << tofBdfFile->GetString() << std::endl; + } + + // ----- Timer -------------------------------------------------------- + TStopwatch timer; + timer.Start(); + // ------------------------------------------------------------------------ + + + // ---- Debug option ------------------------------------------------- + gDebug = 0; + // ------------------------------------------------------------------------ + + gROOT->LoadMacro("save_hst.C"); + + + // ----- Input file --------------------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Using input file " << digiFile << std::endl; + // ------------------------------------------------------------------------ + + // ----- FairRunAna --------------------------------------------------- + FairRunAna* run = new FairRunAna(); + FairFileSource* inputSource = new FairFileSource(digiFile.c_str()); + run->SetSource(inputSource); + run->SetOutputFile(recoFile.c_str()); + + + // ========================================================================= + // === Alignment Correction === + // ========================================================================= + // (Fairsoft Apr21p2 or newer is needed) + + + // TString alignmentMatrixFileName = "AlignmentMatrices_"+ setup +".root"; + // if (alignmentMatrixFileName.Length() != 0) { + // std::cout << "-I- " << myName << ": Applying alignment for file " << alignmentMatrixFileName << std::endl; + + // // Define the basic structure which needs to be filled with information + // // This structure is stored in the output file and later passed to the + // // FairRoot framework to do the (miss)alignment + // std::map<std::string, TGeoHMatrix>* matrices {nullptr}; + + // // read matrices from disk + // LOG(info) << "Filename: " << alignmentMatrixFileName; + // TFile* misalignmentMatrixRootfile = new TFile(alignmentMatrixFileName, "READ"); + // if (misalignmentMatrixRootfile->IsOpen()) { + // gDirectory->GetObject("MisalignMatrices", matrices); + // misalignmentMatrixRootfile->Close(); + // } + // else { + // LOG(error) << "Could not open file " << alignmentMatrixFileName << "\n Exiting"; + // exit(1); + // } + + // if (matrices) { run->AddAlignmentMatrices(*matrices); } + // else { + // LOG(error) << "Alignment required but no matrices found." + // << "\n Exiting"; + // exit(1); + // } + // } + // ------------------------------------------------------------------------ + + + // --------------------event builder--------------------------------------- + CbmTaskBuildRawEvents* evBuildRaw = new CbmTaskBuildRawEvents(); + + //Choose between NoOverlap, MergeOverlap, AllowOverlap + evBuildRaw->SetEventOverlapMode(EOverlapModeRaw::AllowOverlap); + + // Remove detectors where digis not found + if (!geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->RemoveDetector(kRawEventBuilderDetRich); + if (!geoSetup->IsActive(ECbmModuleId::kMuch)) evBuildRaw->RemoveDetector(kRawEventBuilderDetMuch); + if (!geoSetup->IsActive(ECbmModuleId::kPsd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetPsd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd2d)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd2D); + if (!geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->RemoveDetector(kRawEventBuilderDetSts); + if (!geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTof); + + // Set TOF as reference detector + //evBuildRaw->SetReferenceDetector(kRawEventBuilderDetTof); + evBuildRaw->SetReferenceDetector(kRawEventBuilderDetRich); + //evBuildRaw->SetReferenceDetector(kRawEventBuilderDetT0); + evBuildRaw->RemoveDetector(kRawEventBuilderDetT0); + //evBuildRaw->AddDetector(kRawEventBuilderDetT0); + + // void SetTsParameters(double TsStartTime, double TsLength, double TsOverLength): TsStartTime=0, TsLength=256ms in 2021, TsOverLength=TS overlap, not used in mCBM2021 + evBuildRaw->SetTsParameters(0.0, 1.28e8, 0.0); + + if (geoSetup->IsActive(ECbmModuleId::kTof)) + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kTof, eb_TriggerMinNumberTof); + + // evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kT0, eb_TriggerMinNumberT0); + // evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kT0, -1); + + if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kTof, -1); + + //evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kSts, eb_TriggerMinNumberSts); + //evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kSts, -1); + + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kRich, eb_TriggerMinNumberRich); + evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kRich, -1); + + //evBuildRaw->SetTriggerWindow(ECbmModuleId::kT0, -100, 100); + if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTof, -50, 50); + if (geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kSts, -50, 50); + if (geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTrd, -200, 200); + if (geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kRich, -50, 100); + + run->AddTask(evBuildRaw); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction of RICH Hits --------------- + CbmRichMCbmHitProducer* hitProd = new CbmRichMCbmHitProducer(); + hitProd->SetMappingFile("mRICH_Mapping_vert_20190318_elView.geo"); + hitProd->setToTLimits(23.7, 30.0); + hitProd->applyToTCut(); + hitProd->applyICDCorrection(); + run->AddTask(hitProd); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in RICh -> Finding of Rings --------------- + CbmRichReconstruction* richReco = new CbmRichReconstruction(); + richReco->UseMCbmSetup(); + run->AddTask(richReco); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in TOF ---------------------------------- + TString cFname; + switch (iTofCluMode) { + case 1: { + CbmTofEventClusterizer* tofCluster = new CbmTofEventClusterizer("TOF Event Clusterizer", 0, 1); + // cFname=Form("/%s_set%09d_%02d_%01dtofClust.hst.root",cCalId.Data(),iCalSet,calMode,calSel); + // cFname = Form("/%s_set%09d_%02d_%01d_noWalk_tofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + cFname = Form("/%s_set%09d_%02d_%01dtofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + tofCluster->SetCalParFileName(TofFileFolder + cFname); + tofCluster->SetCalMode(calMode); + tofCluster->SetCalSel(calSel); + tofCluster->SetCaldXdYMax(300.); // geometrical matching window in cm + tofCluster->SetCalCluMulMax(3.); // Max Counter Cluster Multiplicity for filling calib histos + tofCluster->SetCalRpc(calSm); // select detector for calibration update + tofCluster->SetTRefId(RefSel); // reference trigger for offset calculation + tofCluster->SetTotMax(20.); // Tot upper limit for walk corection + tofCluster->SetTotMin(0.); // Tot lower limit for walk correction + tofCluster->SetTotPreRange(5.); // effective lower Tot limit in ns from peak position + tofCluster->SetTotMean(5.); // Tot calibration target value in ns + tofCluster->SetMaxTimeDist(1.0); // default cluster range in ns + tofCluster->SetDelTofMax(50.); // acceptance range for cluster distance in ns (!) + tofCluster->SetSel2MulMax(3); // limit Multiplicity in 2nd selector + tofCluster->SetChannelDeadtime(dDeadtime); // artificial deadtime in ns + tofCluster->SetEnableAvWalk(kFALSE); + // tofCluster->SetEnableMatchPosScaling(kFALSE); // turn off projection to nominal target + tofCluster->SetYFitMin(1.E4); + tofCluster->SetToDAv(0.04); + tofCluster->SetIdMode(1); // calibrate on module level + tofCluster->SetTRefDifMax(2.0); // in ns + tofCluster->PosYMaxScal(0.75); //in % of length + Int_t iBRef = iCalSet % 1000; + Int_t iSet = (iCalSet - iBRef) / 1000; + Int_t iRSel = 0; + Int_t iRSelTyp = 0; + Int_t iRSelSm = 0; + Int_t iRSelRpc = 0; + iRSel = iBRef; // use diamond + Int_t iRSelin = iRSel; + iRSelRpc = iRSel % 10; + iRSelTyp = (iRSel - iRSelRpc) / 10; + iRSelSm = iRSelTyp % 10; + iRSelTyp = (iRSelTyp - iRSelSm) / 10; + tofCluster->SetBeamRefId(iRSelTyp); // define Beam reference counter + tofCluster->SetBeamRefSm(iRSelSm); + tofCluster->SetBeamRefDet(iRSelRpc); + tofCluster->SetBeamAddRefMul(-1); + tofCluster->SetBeamRefMulMax(3); + Int_t iSel2in = iSel2; + Int_t iSel2Rpc = iSel2 % 10; + iSel2 = (iSel2 - iSel2Rpc) / 10; + Int_t iSel2Sm = iSel2 % 10; + iSel2 = (iSel2 - iSel2Sm) / 10; + if (iSel2 > -1) { + tofCluster->SetSel2Id(iSel2); + tofCluster->SetSel2Sm(iSel2Sm); + tofCluster->SetSel2Rpc(iSel2Rpc); + } + Int_t iRef = iSet % 1000; + Int_t iDut = (iSet - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + tofCluster->SetDutId(iDut); + tofCluster->SetDutSm(iDutSm); + tofCluster->SetDutRpc(iDutRpc); + + Int_t iRefRpc = iRef % 10; + iRef = (iRef - iRefRpc) / 10; + Int_t iRefSm = iRef % 10; + iRef = (iRef - iRefSm) / 10; + + tofCluster->SetSelId(iRef); + tofCluster->SetSelSm(iRefSm); + tofCluster->SetSelRpc(iRefRpc); + + run->AddTask(tofCluster); + std::cout << "-I- " << myName << ": Added task " << tofCluster->GetName() << std::endl; + } break; + + default: { + ; + } + } + // ------------------------------------------------------------------------- + + // ========================================================================= + // === Tof Tracking === + // ========================================================================= + + cout << "<I> Initialize Tof tracker by ini_trks" << endl; + TString cTrkFile = Form("%s/%s_tofFindTracks.hst.root", TofFileFolder.Data(), cCalId.Data()); + + // ----- Local selection variables -------------------------------------- + + Int_t iRef = iSel % 1000; + Int_t iDut = (iSel - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + Int_t iBucRpc = 0; + + // ========================================================================= + // === Tracking === + // ========================================================================= + + //if (doTofTracking) + { + CbmTofTrackFinder* tofTrackFinder = new CbmTofTrackFinderNN(); + tofTrackFinder->SetMaxTofTimeDifference(0.2); // in ns/cm + Int_t TrackerPar = 0; + switch (TrackerPar) { + case 0: // for full mTof setup + tofTrackFinder->SetTxLIM(0.3); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.3); // max dev from mean slope dy/dz + tofTrackFinder->SetTxMean(0.); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.); // mean slope dy/dz + break; + case 1: // for double stack test counters + tofTrackFinder->SetTxMean(0.21); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.18); // mean slope dy/dz + tofTrackFinder->SetTxLIM(0.15); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.18); // max dev from mean slope dy/dz + break; + } + + CbmTofTrackFitter* tofTrackFitter = new CbmTofTrackFitterKF(0, 211); + TFitter* MyFit = new TFitter(1); // initialize Minuit + tofTrackFinder->SetFitter(tofTrackFitter); + CbmTofFindTracks* tofFindTracks = new CbmTofFindTracks("TOF Track Finder"); + tofFindTracks->UseFinder(tofTrackFinder); + tofFindTracks->UseFitter(tofTrackFitter); + tofFindTracks->SetCalOpt(iCalOpt); // 1 - update offsets, 2 - update walk, 0 - bypass + tofFindTracks->SetCorMode(iGenCor); // valid options: 0,1,2,3,4,5,6, 10 - 19 + tofFindTracks->SetTtTarg(0.042); // target value Mar2021, after T0 fix (double stack run 1058) + tofFindTracks->SetCalParFileName(cTrkFile); // Tracker parameter value file name + tofFindTracks->SetBeamCounter(5, 0, 0); // default beam counter + tofFindTracks->SetR0Lim(20.); + tofFindTracks->SetStationMaxHMul(30); // Max Hit Multiplicity in any used station + + tofFindTracks->SetT0MAX(dScalFac); // in ns + tofFindTracks->SetSIGT(0.08); // default in ns + tofFindTracks->SetSIGX(0.3); // default in cm + tofFindTracks->SetSIGY(0.45); // default in cm + tofFindTracks->SetSIGZ(0.05); // default in cm + tofFindTracks->SetUseSigCalib(bUseSigCalib); // ignore resolutions in CalPar file + tofTrackFinder->SetSIGLIM(dChi2Lim2 * 2.); // matching window in multiples of chi2 + tofTrackFinder->SetChiMaxAccept(dChi2Lim2); // max tracklet chi2 + + Int_t iMinNofHits = -1; + Int_t iNStations = 0; + Int_t iNReqStations = 3; + + switch (iTrackingSetup) { + case 0: // bypass mode + iMinNofHits = -1; + iNStations = 1; + tofFindTracks->SetStation(0, 5, 0, 0); // Diamond + break; + + case 1: // for calibration mode of full setup + { + Double_t dTsig = dScalFac * 0.03; + tofFindTracks->SetSIGT(dTsig); // allow for variable deviations in ns + } + iMinNofHits = 3; + iNStations = 32; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + tofFindTracks->SetStation(16, 0, 4, 0); + tofFindTracks->SetStation(17, 0, 3, 0); + tofFindTracks->SetStation(18, 0, 4, 1); + tofFindTracks->SetStation(19, 0, 3, 1); + tofFindTracks->SetStation(20, 0, 4, 2); + tofFindTracks->SetStation(21, 0, 3, 2); + tofFindTracks->SetStation(22, 0, 4, 3); + tofFindTracks->SetStation(23, 0, 3, 3); + tofFindTracks->SetStation(24, 0, 4, 4); + tofFindTracks->SetStation(25, 0, 3, 4); + tofFindTracks->SetStation(26, 9, 0, 0); + tofFindTracks->SetStation(27, 9, 1, 0); + tofFindTracks->SetStation(28, 9, 0, 1); + tofFindTracks->SetStation(29, 9, 1, 1); + tofFindTracks->SetStation(30, 6, 0, 0); + tofFindTracks->SetStation(31, 6, 0, 1); + break; + + case 11: // for calibration mode of 2-stack & test counters + iMinNofHits = 4; + iNStations = 9; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 9, 0, 0); + tofFindTracks->SetStation(2, 9, 1, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 9, 1, 1); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(6, 0, 4, 0); + tofFindTracks->SetStation(7, 0, 3, 2); + tofFindTracks->SetStation(8, 5, 0, 0); + break; + + case 2: + iMinNofHits = 5; + iNStations = 28; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 0, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 2, 1); + tofFindTracks->SetStation(4, 0, 0, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 2, 3); + tofFindTracks->SetStation(7, 0, 0, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 2, 0); + tofFindTracks->SetStation(10, 0, 0, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 2, 4); + tofFindTracks->SetStation(13, 0, 0, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 4, 0); + tofFindTracks->SetStation(16, 0, 3, 0); + tofFindTracks->SetStation(17, 0, 4, 1); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 2); + tofFindTracks->SetStation(20, 0, 3, 2); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 3); + tofFindTracks->SetStation(23, 0, 4, 4); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 9, 0, 0); + tofFindTracks->SetStation(26, 9, 0, 1); + tofFindTracks->SetStation(27, 5, 0, 0); + break; + + case 3: + iMinNofHits = 3; + iNStations = 16; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + + /* + tofFindTracks->SetStation(16, 0, 3, 2); + tofFindTracks->SetStation(17, 0, 4, 2); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 1); + tofFindTracks->SetStation(20, 0, 3, 3); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 0); + tofFindTracks->SetStation(23, 0, 4, 0); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 0, 4, 4); + */ + break; + + case 4: // for USTC evaluation (dut=910,911) + iMinNofHits = 4; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 0, 3, 1); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 5, 0, 0); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 14: + iMinNofHits = 3; + iNStations = 15; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(0, 0, 2, 1); + tofFindTracks->SetStation(1, 0, 1, 1); + tofFindTracks->SetStation(2, 0, 0, 1); + tofFindTracks->SetStation(0, 0, 2, 0); + tofFindTracks->SetStation(1, 0, 1, 0); + tofFindTracks->SetStation(2, 0, 0, 0); + tofFindTracks->SetStation(0, 0, 2, 3); + tofFindTracks->SetStation(1, 0, 1, 3); + tofFindTracks->SetStation(2, 0, 0, 3); + tofFindTracks->SetStation(0, 0, 2, 4); + tofFindTracks->SetStation(1, 0, 1, 4); + tofFindTracks->SetStation(2, 0, 0, 4); + break; + + case 5: // for calibration of 2-stack and add-on counters (STAR2, BUC) + iMinNofHits = 3; + iNStations = 7; + iNReqStations = 4; + tofFindTracks->SetStation(6, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 9, 0, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 6, 0, 0); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(0, 5, 0, 0); + break; + + case 6: // for double stack USTC counter evaluation + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 6, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 7: // for double stack USTC counter evaluation + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 6, 0, 0); + tofFindTracks->SetStation(3, iDut, iDutSm, iDutRpc); + break; + + case 8: // evaluation of add-on counters (BUC) + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 9, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 9: // calibration of Star2 + iMinNofHits = 4; + iNStations = 5; + iNReqStations = 5; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(1, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + break; + + case 10: + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(3, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(1, 0, 2, 2); + break; + + default: + cout << "Tracking setup " << iTrackingSetup << " not implemented " << endl; + return 1; + ; + } + tofFindTracks->SetMinNofHits(iMinNofHits); + tofFindTracks->SetNStations(iNStations); + tofFindTracks->SetNReqStations(iNReqStations); + tofFindTracks->PrintSetup(); + std::cout << "MinNofHitsPerTrack: " << iMinNofHits << std::endl; + run->AddTask(tofFindTracks); + } + // ------------------------------------------------------------------------ + + + // ========================================================================= + // === RICH QA === + // ========================================================================= + + CbmRichMCbmQaReal* qaTask = new CbmRichMCbmQaReal(); + if (taskId < 0) { qaTask->SetOutputDir(Form("result_run%d", runId)); } + else { + qaTask->SetOutputDir(Form("result_run%d_%05d", runId, taskId)); + } + //qaTask->XOffsetHistos(+25.0); + qaTask->XOffsetHistos(-4.1); + qaTask->SetMaxNofDrawnEvents(100); + qaTask->SetTotRich(23.7, 30.0); + qaTask->SetTriggerRichHits(eb_TriggerMinNumberRich); + qaTask->SetTriggerTofHits(0); // eb_TriggerMinNumberTof); + qaTask->SetSEDisplayRingOnly(); + qaTask->ActivateTimeHistograms(); + run->AddTask(qaTask); + // ------------------------------------------------------------------------ + + + // ----- Parameter database -------------------------------------------- + std::cout << std::endl << std::endl << "-I- " << myName << ": Set runtime DB" << std::endl; + FairRuntimeDb* rtdb = run->GetRuntimeDb(); + Bool_t kParameterMerged = kTRUE; + FairParRootFileIo* parIo1 = new FairParRootFileIo(kParameterMerged); + FairParAsciiFileIo* parIo2 = new FairParAsciiFileIo(); + // parIo1->open(parFile.c_str(), "UPDATE"); + parIo2->open(parFileList, "in"); + parIo2->print(); + rtdb->setFirstInput(parIo2); + // ------------------------------------------------------------------------ + + + // ----- Run initialisation ------------------------------------------- + std::cout << std::endl << "-I- " << myName << ": Initialise run" << std::endl; + run->Init(); + // ------------------------------------------------------------------------ + + + // ----- Database update ---------------------------------------------- + rtdb->setOutput(parIo1); + rtdb->saveOutput(); + rtdb->print(); + rtdb->printParamContexts(); + // ------------------------------------------------------------------------ + + + //--- House Keeping ------------------------------------------------------- + // print all important infos in a file + std::ofstream outfile; + if (taskId < 0) { outfile.open(Form("result_run%d/run_info.dat", runId)); } + else { + outfile.open(Form("result_run%d_%05d/run_info.dat", runId, taskId)); + } + // write inputted data into the file. + outfile << "Run: " << runId << std::endl; + outfile << "Events: " << nEvents << std::endl; + // outfile << "parFile: " << parFile << std::endl; + outfile << "digiFile: " << digiFile << std::endl; + outfile << "recoFile: " << recoFile << std::endl; + //outfile << "Geometry: " << geoFile << std::endl; + outfile << "TrackCalParFile: " << TofFileFolder << cCalId << std::endl; + outfile << "TofClusterFile :" << TofFileFolder + cFname << std::endl; + outfile << "TofOutput :" << cFname << std::endl << std::endl; + outfile << "Trigger:" << std::endl; + outfile << " fixedTimeWindow :" << eb_fixedTimeWindow << std::endl; + outfile << " MinNumberT0 :" << eb_TriggerMinNumberT0 << std::endl; + outfile << " MinNumberSts :" << eb_TriggerMinNumberSts << std::endl; + outfile << " MinNumberMuch :" << eb_TriggerMinNumberMuch << std::endl; + outfile << " MinNumberTof :" << eb_TriggerMinNumberTof << std::endl; + outfile << " MinNumberRich :" << eb_TriggerMinNumberRich << std::endl; + outfile.close(); + // ------------------------------------------------------------------------ + + + // ----- Start run ---------------------------------------------------- + std::cout << std::endl << std::endl; + std::cout << "-I- " << myName << ": Starting run" << std::endl; + run->Run(0, nEvents); + // ------------------------------------------------------------------------ + + + // ----- Finish ------------------------------------------------------- + timer.Stop(); + std::cout << std::endl << std::endl; + std::cout << "Macro finished succesfully." << std::endl; + std::cout << "Output file is " << recoFile << std::endl; + // std::cout << "Parameter file is " << parFile << std::endl; + std::cout << "Real time " << timer.RealTime() << " s, CPU time " << timer.CpuTime() << " s" << std::endl; + std::cout << "Test passed" << std::endl << "All ok" << std::endl; + + // ----- Resource monitoring ------------------------------------------ + // if ( hasFairMonitor /*Has_Fair_Monitor()*/ ) { // FairRoot Version >= 15.11 + // // Extract the maximal used memory an add is as Dart measurement + // // This line is filtered by CTest and the value send to CDash + // FairSystemInfo sysInfo; + // Float_t maxMemory=sysInfo.GetMaxMemory(); + // std::cout << "<DartMeasurement name=\"MaxMemory\" type=\"numeric/double\">"; + // std::cout << maxMemory; + // std::cout << "</DartMeasurement>" << std::endl; + // + // Float_t cpuUsage=ctime/rtime; + // std::cout << "<DartMeasurement name=\"CpuLoad\" type=\"numeric/double\">"; + // std::cout << cpuUsage; + // std::cout << "</DartMeasurement>" << std::endl; + // + // FairMonitor* tempMon = FairMonitor::GetMonitor(); + // tempMon->Print(); + // } +} + +void save_hst(TString cstr = "status.hst.root", Bool_t bROOT = kFALSE) +{ + cout << "save all histograms to file " << cstr.Data() << endl; + TList* tList(NULL); + if (bROOT) { tList = gROOT->GetList(); } + else { + tList = gDirectory->GetList(); + } + TIter next(tList); + // Write objects to the file + TFile* fHist = new TFile(cstr, "RECREATE"); + { + TObject* obj; + while ((obj = (TObject*) next())) { + if (obj->InheritsFrom(TH1::Class()) || obj->InheritsFrom(TEfficiency::Class())) { obj->Write(); } + } + } + // fHist->ls(); + fHist->Close(); +} diff --git a/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_may22_Nickel_Bmon.C b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_may22_Nickel_Bmon.C new file mode 100644 index 0000000000..db50850cee --- /dev/null +++ b/macro/rich/mcbm/beamtime/run_reco_mcbm_real_wToF_may22_Nickel_Bmon.C @@ -0,0 +1,806 @@ +/* Copyright (C) 2020 GSI Helmholtzzentrum fuer Schwerionenforschung, Darmstadt + SPDX-License-Identifier: GPL-3.0-only + Authors: Florian Uhlig [committer] */ + +void run_reco_mcbm_real_wToF_may22_Nickel_Bmon(const unsigned int runId = 2160, // used for the output folder + int nEvents = 50, const int taskId = 11, + const string srcfolder = "/data/cbmroot/mcbmsource/macro/run/data/") +{ + // ----- File names -------------------------------------------------- + const string& digiFile = Form("%s/%4d_bmonintof.digi.root", srcfolder.c_str(), runId); + + + //TString setup = "mcbm_beam_2021_07_surveyed"; + TString setup = "mcbm_beam_2022_03_22_iron"; + if (runId >= 2352) setup = "mcbm_beam_2022_05_23_nickel"; + + const string& recoFile = Form("reco_%s_%d.root", setup.Data(), runId); + // ----------------------------------------------------------------------- + + + // ----- EventBuilder Settings----------------------------------------- + const Double_t eb_fixedTimeWindow {200.}; + const Int_t eb_TriggerMinNumberT0 {1}; + const Int_t eb_TriggerMaxNumberT0 {2}; + const Int_t eb_TriggerMinNumberSts {0}; + const Int_t eb_TriggerMinNumberMuch {0}; + const Int_t eb_TriggerMinNumberTof {16}; + const Int_t eb_TriggerMinNumberTofLayers {4}; + const Int_t eb_TriggerMinNumberRich {5}; + // ----------------------------------------------------------------------- + + + // ----- TOF defaults -------------------------------------------------- + Int_t calMode = 93; + Int_t calSel = 1; + Int_t calSm = 0; + Int_t RefSel = 0; + Double_t dDeadtime = 50.; + Int_t iSel2 = 20; + + // Tracking + Int_t iSel = 1; // 910041; + Int_t iTrackingSetup = 2; + Int_t iGenCor = 1; + Double_t dScalFac = 1.; + Double_t dChi2Lim2 = 500.; + Bool_t bUseSigCalib = kFALSE; + Int_t iCalOpt = 0; + Int_t iTrkPar = 3; + // ----------------------------------------------------------------------- + + + // ----- TOF Settings -------------------------------------------------- + TString cCalId = "490.100.5.0"; + if (runId >= 759) cCalId = "759.100.4.0"; + if (runId >= 812) cCalId = "831.100.4.0"; + if (runId >= 1588) cCalId = "1588.50.6.0"; + if (runId >= 2160) cCalId = "2160.50.4.0"; + if (runId >= 2352) cCalId = "2365.5.lxbk0600"; + Int_t iCalSet = 30040500; // calibration settings + if (runId >= 759) iCalSet = 10020500; + if (runId >= 812) iCalSet = 10020500; + if (runId >= 1588) iCalSet = 12002002; + if (runId >= 2160) iCalSet = 700900500; + if (runId >= 2352) iCalSet = 42032500; + + Double_t Tint = 100.; // coincidence time interval + Int_t iTrackMode = 2; // 2 for TofTracker + const Int_t iTofCluMode = 1; + Bool_t doTofTracking = kTRUE; + // ----------------------------------------------------------------------- + + + // ----- Fair logger --------------------------------------------------- + FairLogger::GetLogger()->SetLogScreenLevel("INFO"); + FairLogger::GetLogger()->SetLogVerbosityLevel("LOW"); + TTree::SetMaxTreeSize(90000000000); + // ----------------------------------------------------------------------- + + TString myName = "run_reco_mcbm_real"; + TString srcDir = gSystem->Getenv("VMCWORKDIR"); // top source directory + TString workDir = gSystem->Getenv("VMCWORKDIR"); + + remove(recoFile.c_str()); + + + // ----- Load the geometry setup ------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Loading setup " << setup << std::endl; + CbmSetup* geoSetup = CbmSetup::Instance(); + geoSetup->LoadSetup(setup); + // You can modify the pre-defined setup by using + // CbmSetup::Instance()->RemoveModule(ESystemId) or + // CbmSetup::Instance()->SetModule(ESystemId, const char*, Bool_t) or + //CbmSetup::Instance()->SetActive(ESystemId, Bool_t) + geoSetup->SetActive(ECbmModuleId::kMvd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kSts, kFALSE); + geoSetup->SetActive(ECbmModuleId::kMuch, kFALSE); + geoSetup->SetActive(ECbmModuleId::kRich, kTRUE); + geoSetup->SetActive(ECbmModuleId::kTrd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTrd2d, kFALSE); + geoSetup->SetActive(ECbmModuleId::kPsd, kFALSE); + geoSetup->SetActive(ECbmModuleId::kTof, kTRUE); + // ----------------------------------------------------------------------- + + //TString TofFileFolder = Form("/lustre/cbm/users/nh/CBM/cbmroot/trunk/macro/beamtime/mcbm2020/%s", cCalId.Data()); + //TString TofFileFolder = Form("/data/cbmroot/files/tofCal/mTofCriPar2/%s", cCalId.Data()); + TString TofFileFolder = Form("/data/cbmroot/files/tofCal/%s", cCalId.Data()); + + std::cout << std::endl << "-I- " << myName << ": Defining parameter files " << std::endl; + TList* parFileList = new TList(); + + + //-----------------------------------------------// + // TString FId = cCalId; + // TString TofGeo = "v19b_mcbm"; //v18m_mCbm + // TString TofGeo = "v20a_mcbm"; //v18m_mCbm + + + // ----- TOF digitisation parameters ------------------------------------- + TString geoTag; + TString geoFile; + if (geoSetup->IsActive(ECbmModuleId::kTof)) { + geoSetup->GetGeoTag(ECbmModuleId::kTof, geoTag); + TObjString* tofBdfFile = new TObjString(srcDir + "/parameters/tof/tof_" + geoTag + ".digibdf.par"); + //TObjString* tofBdfFile = new TObjString("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + parFileList->Add(tofBdfFile); + // parFileList->Add("/lustre/cbm/users/adrian/cbmgit/cbmsource/parameters/tof/tof_v21c_mcbm.digibdf.par"); + std::cout << "-I- " << myName << ": Using parameter file " << tofBdfFile->GetString() << std::endl; + + geoFile = srcDir + "/macro/mcbm/data/" + setup + ".geo.root"; + //geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2022_03_22_iron.geo.root"; + TFile* fgeo = new TFile(geoFile); + TGeoManager* geoMan = (TGeoManager*) fgeo->Get("FAIRGeom"); + if (NULL == geoMan) { + cout << "<E> FAIRGeom not found in geoFile " << geoFile.Data() << endl; + return; + } + } + + // ----- Timer -------------------------------------------------------- + TStopwatch timer; + timer.Start(); + // ------------------------------------------------------------------------ + + + // ---- Debug option ------------------------------------------------- + gDebug = 0; + // ------------------------------------------------------------------------ + + gROOT->LoadMacro("save_hst.C"); + + + // ----- Input file --------------------------------------------------- + std::cout << std::endl; + std::cout << "-I- " << myName << ": Using input file " << digiFile << std::endl; + // ------------------------------------------------------------------------ + + // ----- FairRunAna --------------------------------------------------- + FairRunAna* run = new FairRunAna(); + FairFileSource* inputSource = new FairFileSource(digiFile.c_str()); + run->SetSource(inputSource); + run->SetOutputFile(recoFile.c_str()); + + + // ========================================================================= + // === Alignment Correction === + // ========================================================================= + // (Fairsoft Apr21p2 or newer is needed) + + + TString alignmentMatrixFileName = "AlignmentMatrices_" + setup + ".root"; + if (alignmentMatrixFileName.Length() != 0) { + std::cout << "-I- " << myName << ": Applying alignment for file " << alignmentMatrixFileName << std::endl; + + // Define the basic structure which needs to be filled with information + // This structure is stored in the output file and later passed to the + // FairRoot framework to do the (miss)alignment + std::map<std::string, TGeoHMatrix>* matrices {nullptr}; + + // read matrices from disk + LOG(info) << "Filename: " << alignmentMatrixFileName; + TFile* misalignmentMatrixRootfile = new TFile(alignmentMatrixFileName, "READ"); + if (misalignmentMatrixRootfile->IsOpen()) { + gDirectory->GetObject("MisalignMatrices", matrices); + misalignmentMatrixRootfile->Close(); + } + else { + LOG(error) << "Could not open file " << alignmentMatrixFileName << "\n Exiting"; + exit(1); + } + + if (matrices) { run->AddAlignmentMatrices(*matrices); } + else { + LOG(error) << "Alignment required but no matrices found." + << "\n Exiting"; + exit(1); + } + } + // ------------------------------------------------------------------------ + + + // --------------------event builder--------------------------------------- + CbmTaskBuildRawEvents* evBuildRaw = new CbmTaskBuildRawEvents(); + + //Choose between NoOverlap, MergeOverlap, AllowOverlap + evBuildRaw->SetEventOverlapMode(EOverlapModeRaw::AllowOverlap); + + // Remove detectors where digis not found + if (!geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->RemoveDetector(kRawEventBuilderDetRich); + if (!geoSetup->IsActive(ECbmModuleId::kMuch)) evBuildRaw->RemoveDetector(kRawEventBuilderDetMuch); + if (!geoSetup->IsActive(ECbmModuleId::kPsd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetPsd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd); + if (!geoSetup->IsActive(ECbmModuleId::kTrd2d)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd2D); + if (!geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->RemoveDetector(kRawEventBuilderDetSts); + if (!geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->RemoveDetector(kRawEventBuilderDetTof); + + // Set TOF as reference detector + evBuildRaw->SetReferenceDetector(kRawEventBuilderDetTof); + // evBuildRaw->SetReferenceDetector(kRawEventBuilderDetT0); + + // evBuildRaw->AddDetector(kRawEventBuilderDetT0); + // void SetTsParameters(double TsStartTime, double TsLength, double TsOverLength): TsStartTime=0, TsLength=256ms in 2021, TsOverLength=TS overlap, not used in mCBM2021 + evBuildRaw->SetTsParameters(0.0, 1.28e8, 0.0); + + if (geoSetup->IsActive(ECbmModuleId::kTof)) + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kTof, eb_TriggerMinNumberTof); + if (geoSetup->IsActive(ECbmModuleId::kTof)) + evBuildRaw->SetTriggerMinLayersNumber(ECbmModuleId::kTof, eb_TriggerMinNumberTofLayers); + + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kT0, eb_TriggerMinNumberT0); + evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kT0, eb_TriggerMaxNumberT0); + if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kTof, -1); + + // evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kSts, eb_TriggerMinNumberSts); + // evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kSts, -1); + + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kRich, eb_TriggerMinNumberRich); + evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kRich, -1); + + evBuildRaw->SetTriggerWindow(ECbmModuleId::kT0, -50, 150); + if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTof, -50, 100); + if (geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kSts, -50, 50); + if (geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTrd, -200, 200); + if (geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kRich, -50, 100); + + run->AddTask(evBuildRaw); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction of RICH Hits --------------- + CbmRichMCbmHitProducer* hitProd = new CbmRichMCbmHitProducer(); + hitProd->SetMappingFile("mRICH_Mapping_vert_20190318_elView.geo"); + hitProd->setToTLimits(23.7, 30.0); + hitProd->applyToTCut(); + hitProd->applyICDCorrection(); + run->AddTask(hitProd); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in RICh -> Finding of Rings --------------- + CbmRichReconstruction* richReco = new CbmRichReconstruction(); + richReco->UseMCbmSetup(); + run->AddTask(richReco); + // ------------------------------------------------------------------------ + + + // ----- Local reconstruction in TOF ---------------------------------- + TString cFname; + switch (iTofCluMode) { + case 1: { + CbmTofEventClusterizer* tofCluster = new CbmTofEventClusterizer("TOF Event Clusterizer", 0, 1); + // cFname=Form("/%s_set%09d_%02d_%01dtofClust.hst.root",cCalId.Data(),iCalSet,calMode,calSel); + // cFname = Form("/%s_set%09d_%02d_%01d_noWalk_tofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + cFname = Form("/%s_set%09d_%02d_%01dtofClust.hst.root", cCalId.Data(), iCalSet, calMode, calSel); + tofCluster->SetCalParFileName(TofFileFolder + cFname); + tofCluster->SetCalMode(calMode); + tofCluster->SetCalSel(calSel); + tofCluster->SetCaldXdYMax(300.); // geometrical matching window in cm + tofCluster->SetCalCluMulMax(3.); // Max Counter Cluster Multiplicity for filling calib histos + tofCluster->SetCalRpc(calSm); // select detector for calibration update + tofCluster->SetTRefId(RefSel); // reference trigger for offset calculation + tofCluster->SetTotMax(20.); // Tot upper limit for walk corection + tofCluster->SetTotMin(0.); // Tot lower limit for walk correction + tofCluster->SetTotPreRange(5.); // effective lower Tot limit in ns from peak position + tofCluster->SetTotMean(5.); // Tot calibration target value in ns + tofCluster->SetMaxTimeDist(1.0); // default cluster range in ns + tofCluster->SetDelTofMax(50.); // acceptance range for cluster distance in ns (!) + tofCluster->SetSel2MulMax(3); // limit Multiplicity in 2nd selector + tofCluster->SetChannelDeadtime(dDeadtime); // artificial deadtime in ns + tofCluster->SetEnableAvWalk(kFALSE); + // tofCluster->SetEnableMatchPosScaling(kFALSE); // turn off projection to nominal target + tofCluster->SetYFitMin(1.E4); + tofCluster->SetToDAv(0.04); + tofCluster->SetIdMode(1); // calibrate on module level + tofCluster->SetTRefDifMax(2.0); // in ns + tofCluster->PosYMaxScal(0.75); //in % of length + Int_t iBRef = iCalSet % 1000; + Int_t iSet = (iCalSet - iBRef) / 1000; + Int_t iRSel = 0; + Int_t iRSelTyp = 0; + Int_t iRSelSm = 0; + Int_t iRSelRpc = 0; + iRSel = iBRef; // use diamond + Int_t iRSelin = iRSel; + iRSelRpc = iRSel % 10; + iRSelTyp = (iRSel - iRSelRpc) / 10; + iRSelSm = iRSelTyp % 10; + iRSelTyp = (iRSelTyp - iRSelSm) / 10; + tofCluster->SetBeamRefId(iRSelTyp); // define Beam reference counter + tofCluster->SetBeamRefSm(iRSelSm); + tofCluster->SetBeamRefDet(iRSelRpc); + tofCluster->SetBeamAddRefMul(-1); + tofCluster->SetBeamRefMulMax(3); + Int_t iSel2in = iSel2; + Int_t iSel2Rpc = iSel2 % 10; + iSel2 = (iSel2 - iSel2Rpc) / 10; + Int_t iSel2Sm = iSel2 % 10; + iSel2 = (iSel2 - iSel2Sm) / 10; + if (iSel2 > -1) { + tofCluster->SetSel2Id(iSel2); + tofCluster->SetSel2Sm(iSel2Sm); + tofCluster->SetSel2Rpc(iSel2Rpc); + } + Int_t iRef = iSet % 1000; + Int_t iDut = (iSet - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + tofCluster->SetDutId(iDut); + tofCluster->SetDutSm(iDutSm); + tofCluster->SetDutRpc(iDutRpc); + + Int_t iRefRpc = iRef % 10; + iRef = (iRef - iRefRpc) / 10; + Int_t iRefSm = iRef % 10; + iRef = (iRef - iRefSm) / 10; + + tofCluster->SetSelId(iRef); + tofCluster->SetSelSm(iRefSm); + tofCluster->SetSelRpc(iRefRpc); + + run->AddTask(tofCluster); + std::cout << "-I- " << myName << ": Added task " << tofCluster->GetName() << std::endl; + } break; + + default: { + ; + } + } + // ------------------------------------------------------------------------- + + // ========================================================================= + // === Tof Tracking === + // ========================================================================= + + cout << "<I> Initialize Tof tracker by ini_trks" << endl; + TString cTrkFile = Form("%s/%s_tofFindTracks.hst.root", TofFileFolder.Data(), cCalId.Data()); + + // ----- Local selection variables -------------------------------------- + + Int_t iRef = iSel % 1000; + Int_t iDut = (iSel - iRef) / 1000; + Int_t iDutRpc = iDut % 10; + iDut = (iDut - iDutRpc) / 10; + Int_t iDutSm = iDut % 10; + iDut = (iDut - iDutSm) / 10; + Int_t iBucRpc = 0; + + // ========================================================================= + // === Tracking === + // ========================================================================= + + //if (doTofTracking) + { + CbmTofTrackFinder* tofTrackFinder = new CbmTofTrackFinderNN(); + tofTrackFinder->SetMaxTofTimeDifference(0.2); // in ns/cm + Int_t TrackerPar = 0; + switch (TrackerPar) { + case 0: // for full mTof setup + tofTrackFinder->SetTxLIM(0.3); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.3); // max dev from mean slope dy/dz + tofTrackFinder->SetTxMean(0.); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.); // mean slope dy/dz + break; + case 1: // for double stack test counters + tofTrackFinder->SetTxMean(0.21); // mean slope dy/dz + tofTrackFinder->SetTyMean(0.18); // mean slope dy/dz + tofTrackFinder->SetTxLIM(0.15); // max slope dx/dz + tofTrackFinder->SetTyLIM(0.18); // max dev from mean slope dy/dz + break; + } + + CbmTofTrackFitter* tofTrackFitter = new CbmTofTrackFitterKF(0, 211); + TFitter* MyFit = new TFitter(1); // initialize Minuit + tofTrackFinder->SetFitter(tofTrackFitter); + CbmTofFindTracks* tofFindTracks = new CbmTofFindTracks("TOF Track Finder"); + tofFindTracks->UseFinder(tofTrackFinder); + tofFindTracks->UseFitter(tofTrackFitter); + tofFindTracks->SetCalOpt(iCalOpt); // 1 - update offsets, 2 - update walk, 0 - bypass + tofFindTracks->SetCorMode(iGenCor); // valid options: 0,1,2,3,4,5,6, 10 - 19 + tofFindTracks->SetTtTarg(0.042); // target value Mar2021, after T0 fix (double stack run 1058) + tofFindTracks->SetCalParFileName(cTrkFile); // Tracker parameter value file name + tofFindTracks->SetBeamCounter(5, 0, 0); // default beam counter + tofFindTracks->SetR0Lim(20.); + tofFindTracks->SetStationMaxHMul(30); // Max Hit Multiplicity in any used station + + tofFindTracks->SetT0MAX(dScalFac); // in ns + tofFindTracks->SetSIGT(0.08); // default in ns + tofFindTracks->SetSIGX(0.3); // default in cm + tofFindTracks->SetSIGY(0.45); // default in cm + tofFindTracks->SetSIGZ(0.05); // default in cm + tofFindTracks->SetUseSigCalib(bUseSigCalib); // ignore resolutions in CalPar file + tofTrackFinder->SetSIGLIM(dChi2Lim2 * 2.); // matching window in multiples of chi2 + tofTrackFinder->SetChiMaxAccept(dChi2Lim2); // max tracklet chi2 + + Int_t iMinNofHits = -1; + Int_t iNStations = 0; + Int_t iNReqStations = 3; + + switch (iTrackingSetup) { + case 0: // bypass mode + iMinNofHits = -1; + iNStations = 1; + tofFindTracks->SetStation(0, 5, 0, 0); // Diamond + break; + + case 1: // for calibration mode of full setup + { + Double_t dTsig = dScalFac * 0.03; + tofFindTracks->SetSIGT(dTsig); // allow for variable deviations in ns + } + iMinNofHits = 3; + iNStations = 32; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + tofFindTracks->SetStation(16, 0, 4, 0); + tofFindTracks->SetStation(17, 0, 3, 0); + tofFindTracks->SetStation(18, 0, 4, 1); + tofFindTracks->SetStation(19, 0, 3, 1); + tofFindTracks->SetStation(20, 0, 4, 2); + tofFindTracks->SetStation(21, 0, 3, 2); + tofFindTracks->SetStation(22, 0, 4, 3); + tofFindTracks->SetStation(23, 0, 3, 3); + tofFindTracks->SetStation(24, 0, 4, 4); + tofFindTracks->SetStation(25, 0, 3, 4); + tofFindTracks->SetStation(26, 9, 0, 0); + tofFindTracks->SetStation(27, 9, 1, 0); + tofFindTracks->SetStation(28, 9, 0, 1); + tofFindTracks->SetStation(29, 9, 1, 1); + tofFindTracks->SetStation(30, 6, 0, 0); + tofFindTracks->SetStation(31, 6, 0, 1); + break; + + case 11: // for calibration mode of 2-stack & test counters + iMinNofHits = 4; + iNStations = 9; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 9, 0, 0); + tofFindTracks->SetStation(2, 9, 1, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 9, 1, 1); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(6, 0, 4, 0); + tofFindTracks->SetStation(7, 0, 3, 2); + tofFindTracks->SetStation(8, 5, 0, 0); + break; + + case 2: + iMinNofHits = 5; + iNStations = 28; + iNReqStations = 5; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 0, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 2, 1); + tofFindTracks->SetStation(4, 0, 0, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 2, 3); + tofFindTracks->SetStation(7, 0, 0, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 2, 0); + tofFindTracks->SetStation(10, 0, 0, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 2, 4); + tofFindTracks->SetStation(13, 0, 0, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 4, 0); + tofFindTracks->SetStation(16, 0, 3, 0); + tofFindTracks->SetStation(17, 0, 4, 1); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 2); + tofFindTracks->SetStation(20, 0, 3, 2); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 3); + tofFindTracks->SetStation(23, 0, 4, 4); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 9, 0, 0); + tofFindTracks->SetStation(26, 9, 0, 1); + tofFindTracks->SetStation(27, 5, 0, 0); + break; + + case 3: + iMinNofHits = 3; + iNStations = 16; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 0, 2, 2); + tofFindTracks->SetStation(2, 0, 1, 2); + tofFindTracks->SetStation(3, 0, 0, 2); + + tofFindTracks->SetStation(4, 0, 2, 1); + tofFindTracks->SetStation(5, 0, 1, 1); + tofFindTracks->SetStation(6, 0, 0, 1); + + tofFindTracks->SetStation(7, 0, 2, 3); + tofFindTracks->SetStation(8, 0, 1, 3); + tofFindTracks->SetStation(9, 0, 0, 3); + + tofFindTracks->SetStation(10, 0, 2, 0); + tofFindTracks->SetStation(11, 0, 1, 0); + tofFindTracks->SetStation(12, 0, 0, 0); + + tofFindTracks->SetStation(13, 0, 2, 4); + tofFindTracks->SetStation(14, 0, 1, 4); + tofFindTracks->SetStation(15, 0, 0, 4); + + /* + tofFindTracks->SetStation(16, 0, 3, 2); + tofFindTracks->SetStation(17, 0, 4, 2); + tofFindTracks->SetStation(18, 0, 3, 1); + tofFindTracks->SetStation(19, 0, 4, 1); + tofFindTracks->SetStation(20, 0, 3, 3); + tofFindTracks->SetStation(21, 0, 4, 3); + tofFindTracks->SetStation(22, 0, 3, 0); + tofFindTracks->SetStation(23, 0, 4, 0); + tofFindTracks->SetStation(24, 0, 3, 4); + tofFindTracks->SetStation(25, 0, 4, 4); + */ + break; + + case 4: // for USTC evaluation (dut=910,911) + iMinNofHits = 4; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 0, 3, 1); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 5, 0, 0); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 14: + iMinNofHits = 3; + iNStations = 15; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 2, 2); + tofFindTracks->SetStation(1, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(0, 0, 2, 1); + tofFindTracks->SetStation(1, 0, 1, 1); + tofFindTracks->SetStation(2, 0, 0, 1); + tofFindTracks->SetStation(0, 0, 2, 0); + tofFindTracks->SetStation(1, 0, 1, 0); + tofFindTracks->SetStation(2, 0, 0, 0); + tofFindTracks->SetStation(0, 0, 2, 3); + tofFindTracks->SetStation(1, 0, 1, 3); + tofFindTracks->SetStation(2, 0, 0, 3); + tofFindTracks->SetStation(0, 0, 2, 4); + tofFindTracks->SetStation(1, 0, 1, 4); + tofFindTracks->SetStation(2, 0, 0, 4); + break; + + case 5: // for calibration of 2-stack and add-on counters (STAR2, BUC) + iMinNofHits = 3; + iNStations = 7; + iNReqStations = 4; + tofFindTracks->SetStation(6, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 9, 0, 0); + tofFindTracks->SetStation(3, 9, 0, 1); + tofFindTracks->SetStation(4, 6, 0, 0); + tofFindTracks->SetStation(5, 0, 3, 1); + tofFindTracks->SetStation(0, 5, 0, 0); + break; + + case 6: // for double stack USTC counter evaluation + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 6, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 7: // for double stack USTC counter evaluation + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 0, 4, 1); + tofFindTracks->SetStation(1, 6, 0, 1); + tofFindTracks->SetStation(2, 6, 0, 0); + tofFindTracks->SetStation(3, iDut, iDutSm, iDutRpc); + break; + + case 8: // evaluation of add-on counters (BUC) + iMinNofHits = 5; + iNStations = 6; + iNReqStations = 6; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(1, 9, 0, 1); + tofFindTracks->SetStation(2, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + tofFindTracks->SetStation(5, iDut, iDutSm, iDutRpc); + break; + + case 9: // calibration of Star2 + iMinNofHits = 4; + iNStations = 5; + iNReqStations = 5; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(2, 9, 0, 1); + tofFindTracks->SetStation(1, 0, 4, 1); + tofFindTracks->SetStation(3, 9, 0, 0); + tofFindTracks->SetStation(4, 0, 3, 1); + break; + + case 10: + iMinNofHits = 3; + iNStations = 4; + iNReqStations = 4; + tofFindTracks->SetStation(0, 5, 0, 0); + tofFindTracks->SetStation(3, 0, 1, 2); + tofFindTracks->SetStation(2, 0, 0, 2); + tofFindTracks->SetStation(1, 0, 2, 2); + break; + + default: + cout << "Tracking setup " << iTrackingSetup << " not implemented " << endl; + return 1; + ; + } + tofFindTracks->SetMinNofHits(iMinNofHits); + tofFindTracks->SetNStations(iNStations); + tofFindTracks->SetNReqStations(iNReqStations); + tofFindTracks->PrintSetup(); + std::cout << "MinNofHitsPerTrack: " << iMinNofHits << std::endl; + run->AddTask(tofFindTracks); + } + // ------------------------------------------------------------------------ + + + // ========================================================================= + // === RICH QA === + // ========================================================================= + + CbmRichMCbmQaReal* qaTask = new CbmRichMCbmQaReal(); + if (taskId < 0) { qaTask->SetOutputDir(Form("result_run%d", runId)); } + else { + qaTask->SetOutputDir(Form("result_run%d_%05d", runId, taskId)); + } + //qaTask->XOffsetHistos(+25.0); + qaTask->XOffsetHistos(-4.1); + if (runId > 2351) qaTask->XOffsetHistos(0.0); + qaTask->SetMaxNofDrawnEvents(100); + qaTask->SetTotRich(23.7, 30.0); + qaTask->SetTriggerRichHits(eb_TriggerMinNumberRich); + qaTask->SetTriggerTofHits(0); // eb_TriggerMinNumberTof); + qaTask->SetSEDisplayRingOnly(); + run->AddTask(qaTask); + // ------------------------------------------------------------------------ + + + // ----- Parameter database -------------------------------------------- + std::cout << std::endl << std::endl << "-I- " << myName << ": Set runtime DB" << std::endl; + FairRuntimeDb* rtdb = run->GetRuntimeDb(); + Bool_t kParameterMerged = kTRUE; + FairParRootFileIo* parIo1 = new FairParRootFileIo(kParameterMerged); + FairParAsciiFileIo* parIo2 = new FairParAsciiFileIo(); + // parIo1->open(parFile.c_str(), "UPDATE"); + parIo2->open(parFileList, "in"); + parIo2->print(); + rtdb->setFirstInput(parIo2); + // ------------------------------------------------------------------------ + + + // ----- Run initialisation ------------------------------------------- + std::cout << std::endl << "-I- " << myName << ": Initialise run" << std::endl; + run->Init(); + // ------------------------------------------------------------------------ + + + // ----- Database update ---------------------------------------------- + rtdb->setOutput(parIo1); + rtdb->saveOutput(); + rtdb->print(); + rtdb->printParamContexts(); + // ------------------------------------------------------------------------ + + + //--- House Keeping ------------------------------------------------------- + // print all important infos in a file + std::ofstream outfile; + if (taskId < 0) { outfile.open(Form("result_run%d/run_info.dat", runId)); } + else { + outfile.open(Form("result_run%d_%05d/run_info.dat", runId, taskId)); + } + // write inputted data into the file. + outfile << "Run: " << runId << std::endl; + outfile << "Events: " << nEvents << std::endl; + // outfile << "parFile: " << parFile << std::endl; + outfile << "digiFile: " << digiFile << std::endl; + outfile << "recoFile: " << recoFile << std::endl; + //outfile << "Geometry: " << geoFile << std::endl; + outfile << "TrackCalParFile: " << TofFileFolder << cCalId << std::endl; + outfile << "TofClusterFile :" << TofFileFolder + cFname << std::endl; + outfile << "TofOutput :" << cFname << std::endl << std::endl; + outfile << "Trigger:" << std::endl; + outfile << " fixedTimeWindow :" << eb_fixedTimeWindow << std::endl; + outfile << " MinNumberT0 :" << eb_TriggerMinNumberT0 << std::endl; + outfile << " MinNumberSts :" << eb_TriggerMinNumberSts << std::endl; + outfile << " MinNumberMuch :" << eb_TriggerMinNumberMuch << std::endl; + outfile << " MinNumberTof :" << eb_TriggerMinNumberTof << std::endl; + outfile << " MinNumberRich :" << eb_TriggerMinNumberRich << std::endl; + outfile.close(); + // ------------------------------------------------------------------------ + + + // ----- Start run ---------------------------------------------------- + std::cout << std::endl << std::endl; + std::cout << "-I- " << myName << ": Starting run" << std::endl; + run->Run(0, nEvents); + // ------------------------------------------------------------------------ + + + // ----- Finish ------------------------------------------------------- + timer.Stop(); + std::cout << std::endl << std::endl; + std::cout << "Macro finished succesfully." << std::endl; + std::cout << "Output file is " << recoFile << std::endl; + // std::cout << "Parameter file is " << parFile << std::endl; + std::cout << "Real time " << timer.RealTime() << " s, CPU time " << timer.CpuTime() << " s" << std::endl; + std::cout << "Test passed" << std::endl << "All ok" << std::endl; + + // ----- Resource monitoring ------------------------------------------ + // if ( hasFairMonitor /*Has_Fair_Monitor()*/ ) { // FairRoot Version >= 15.11 + // // Extract the maximal used memory an add is as Dart measurement + // // This line is filtered by CTest and the value send to CDash + // FairSystemInfo sysInfo; + // Float_t maxMemory=sysInfo.GetMaxMemory(); + // std::cout << "<DartMeasurement name=\"MaxMemory\" type=\"numeric/double\">"; + // std::cout << maxMemory; + // std::cout << "</DartMeasurement>" << std::endl; + // + // Float_t cpuUsage=ctime/rtime; + // std::cout << "<DartMeasurement name=\"CpuLoad\" type=\"numeric/double\">"; + // std::cout << cpuUsage; + // std::cout << "</DartMeasurement>" << std::endl; + // + // FairMonitor* tempMon = FairMonitor::GetMonitor(); + // tempMon->Print(); + // } +} + +void save_hst(TString cstr = "status.hst.root", Bool_t bROOT = kFALSE) +{ + cout << "save all histograms to file " << cstr.Data() << endl; + TList* tList(NULL); + if (bROOT) { tList = gROOT->GetList(); } + else { + tList = gDirectory->GetList(); + } + TIter next(tList); + // Write objects to the file + TFile* fHist = new TFile(cstr, "RECREATE"); + { + TObject* obj; + while ((obj = (TObject*) next())) { + if (obj->InheritsFrom(TH1::Class()) || obj->InheritsFrom(TEfficiency::Class())) { obj->Write(); } + } + } + // fHist->ls(); + fHist->Close(); +} diff --git a/macro/rich/mcbm/beamtime/run_reco_mcbm_richOnly2022.C b/macro/rich/mcbm/beamtime/run_reco_mcbm_richOnly2022.C index eea74e7639..7881ad8fbb 100644 --- a/macro/rich/mcbm/beamtime/run_reco_mcbm_richOnly2022.C +++ b/macro/rich/mcbm/beamtime/run_reco_mcbm_richOnly2022.C @@ -3,8 +3,8 @@ Authors: Florian Uhlig [committer] */ void run_reco_mcbm_richOnly2022(const string srcfolder = "/data/cbmroot/cbmsource/macro/run/data/", - const unsigned int runId = 1981, // used for the output folder - int nEvents = 3, const int taskId = 1) + const unsigned int runId = 2160, // used for the output folder + int nEvents = 100, const int taskId = 9) { const string& digiFile = Form("%s/%u.digi.root", srcfolder.c_str(), runId); const string& recoFile = Form("reco_mcbm_mar22_%d.root", runId); @@ -14,7 +14,7 @@ void run_reco_mcbm_richOnly2022(const string srcfolder = "/data/cbmroot/cbmsou const Int_t eb_TriggerMinNumberSts {0}; const Int_t eb_TriggerMinNumberMuch {0}; const Int_t eb_TriggerMinNumberTof {0}; - const Int_t eb_TriggerMinNumberRich {5}; + const Int_t eb_TriggerMinNumberRich {10}; FairLogger::GetLogger()->SetLogScreenLevel("INFO"); FairLogger::GetLogger()->SetLogVerbosityLevel("LOW"); @@ -34,7 +34,10 @@ void run_reco_mcbm_richOnly2022(const string srcfolder = "/data/cbmroot/cbmsou std::cout << std::endl << "-I- " << myName << ": Defining parameter files " << std::endl; TList* parFileList = new TList(); - TString geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2021_07_surveyed.geo.root"; + TString geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2022_03_22_iron.geo.root"; + + if (runId >= 2352) geoFile = srcDir + "/macro/mcbm/data/mcbm_beam_2022_05_23_nickel.geo.root"; + TFile* fgeo = new TFile(geoFile); TGeoManager* geoMan = (TGeoManager*) fgeo->Get("FAIRGeom"); if (geoMan == nullptr) { @@ -52,26 +55,74 @@ void run_reco_mcbm_richOnly2022(const string srcfolder = "/data/cbmroot/cbmsou run->SetOutputFile(recoFile.c_str()); run->SetGenerateRunInfo(kTRUE); - CbmMcbm2018EventBuilder* eventBuilder = new CbmMcbm2018EventBuilder(); - // eventBuilder->SetEventBuilderAlgo(EventBuilderAlgo::MaximumTimeGap); - // eventBuilder->SetMaximumTimeGap(100.); - eventBuilder->SetEventBuilderAlgo(EventBuilderAlgo::FixedTimeWindow); - eventBuilder->SetFixedTimeWindow(eb_fixedTimeWindow); - eventBuilder->SetTriggerMinNumberT0(eb_TriggerMinNumberT0); - eventBuilder->SetTriggerMinNumberSts(eb_TriggerMinNumberSts); - eventBuilder->SetTriggerMinNumberMuch(eb_TriggerMinNumberMuch); - eventBuilder->SetTriggerMinNumberTof(eb_TriggerMinNumberTof); - eventBuilder->SetTriggerMinNumberRich(eb_TriggerMinNumberRich); - eventBuilder->SetFillHistos(kFALSE); // to prevent memory leak??? + // CbmMcbm2018EventBuilder* eventBuilder = new CbmMcbm2018EventBuilder(); + // // eventBuilder->SetEventBuilderAlgo(EventBuilderAlgo::MaximumTimeGap); + // // eventBuilder->SetMaximumTimeGap(100.); + // eventBuilder->SetEventBuilderAlgo(EventBuilderAlgo::FixedTimeWindow); + // eventBuilder->SetFixedTimeWindow(eb_fixedTimeWindow); + // eventBuilder->SetTriggerMinNumberT0(eb_TriggerMinNumberT0); + // eventBuilder->SetTriggerMinNumberSts(eb_TriggerMinNumberSts); + // eventBuilder->SetTriggerMinNumberMuch(eb_TriggerMinNumberMuch); + // eventBuilder->SetTriggerMinNumberTof(eb_TriggerMinNumberTof); + // eventBuilder->SetTriggerMinNumberRich(eb_TriggerMinNumberRich); + // eventBuilder->SetFillHistos(kFALSE); // to prevent memory leak??? + + + // run->AddTask(eventBuilder); + + CbmTaskBuildRawEvents* evBuildRaw = new CbmTaskBuildRawEvents(); + + //Choose between NoOverlap, MergeOverlap, AllowOverlap + evBuildRaw->SetEventOverlapMode(EOverlapModeRaw::AllowOverlap); + + // Remove detectors where digis not found + //if (!geoSetup->IsActive(ECbmModuleId::kRich)) evBuildRaw->RemoveDetector(kRawEventBuilderDetRich); + evBuildRaw->RemoveDetector(kRawEventBuilderDetMuch); + evBuildRaw->RemoveDetector(kRawEventBuilderDetPsd); + evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd); + evBuildRaw->RemoveDetector(kRawEventBuilderDetTrd2D); + evBuildRaw->RemoveDetector(kRawEventBuilderDetSts); + evBuildRaw->RemoveDetector(kRawEventBuilderDetTof); + evBuildRaw->RemoveDetector(kRawEventBuilderDetT0); + // Set TOF as reference detector + evBuildRaw->SetReferenceDetector(kRawEventBuilderDetRich); + //evBuildRaw->SetReferenceDetector(kRawEventBuilderDetT0); + + //evBuildRaw->AddDetector(kRawEventBuilderDetT0); + + // void SetTsParameters(double TsStartTime, double TsLength, double TsOverLength): TsStartTime=0, TsLength=256ms in 2021, TsOverLength=TS overlap, not used in mCBM2021 + evBuildRaw->SetTsParameters(0.0, 1.28e8, 0.0); + + //evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kTof, eb_TriggerMinNumberTof); + + // evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kT0, eb_TriggerMinNumberT0); + // evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kT0, -1); + + //evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kTof, -1); + + //evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kSts, eb_TriggerMinNumberSts); + //evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kSts, -1); + + evBuildRaw->SetTriggerMinNumber(ECbmModuleId::kRich, eb_TriggerMinNumberRich); + evBuildRaw->SetTriggerMaxNumber(ECbmModuleId::kRich, -1); + + //evBuildRaw->SetTriggerWindow(ECbmModuleId::kT0, -100, 100); + //if (geoSetup->IsActive(ECbmModuleId::kTof)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTof, -50, 50); + //if (geoSetup->IsActive(ECbmModuleId::kSts)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kSts, -50, 50); + //if (geoSetup->IsActive(ECbmModuleId::kTrd)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTrd, -200, 200); + //if (geoSetup->IsActive(ECbmModuleId::kTrd2d)) evBuildRaw->SetTriggerWindow(ECbmModuleId::kTrd2d, -200, 200); + evBuildRaw->SetTriggerWindow(ECbmModuleId::kRich, -50, 100); + run->AddTask(evBuildRaw); - run->AddTask(eventBuilder); + //--------------------------------------------------------------- CbmRichMCbmHitProducer* hitProd = new CbmRichMCbmHitProducer(); hitProd->SetMappingFile("mRICH_Mapping_vert_20190318_elView.geo"); hitProd->setToTLimits(23.7, 30.0); hitProd->applyToTCut(); + hitProd->applyICDCorrection(); run->AddTask(hitProd); CbmRichReconstruction* richReco = new CbmRichReconstruction(); @@ -85,11 +136,13 @@ void run_reco_mcbm_richOnly2022(const string srcfolder = "/data/cbmroot/cbmsou qaTask->SetOutputDir(Form("result_richOnly_run%d_%05d", runId, taskId)); } // qaTask->DoRestrictToAcc();//restrict to mRICH MAR2019 in histFilling - qaTask->XOffsetHistos(+25.0); + qaTask->XOffsetHistos(+5.5); qaTask->SetMaxNofDrawnEvents(100); - //qaTask->SetTotRich(23.7,30.0); + qaTask->SetTotRich(23.7, 30.0); + // qaTask->SetTotRich(0.0, 60.0); qaTask->SetTriggerRichHits(eb_TriggerMinNumberRich); - //qaTask->DoWriteHistToFile(false); + // qaTask->DoWriteHistToFile(false); + // qaTask->SetIcdGeneration(); // comment out to stop generation in ICD files. run->AddTask(qaTask); std::cout << std::endl << std::endl << "-I- " << myName << ": Set runtime DB" << std::endl; diff --git a/reco/detectors/rich/mcbm/CbmRichMCbmQaReal.cxx b/reco/detectors/rich/mcbm/CbmRichMCbmQaReal.cxx index d025015350..6971573bf0 100644 --- a/reco/detectors/rich/mcbm/CbmRichMCbmQaReal.cxx +++ b/reco/detectors/rich/mcbm/CbmRichMCbmQaReal.cxx @@ -151,6 +151,7 @@ InitStatus CbmRichMCbmQaReal::Init() fSeDisplay->SetTotRich(fTotRichMin, fTotRichMax); fSeDisplay->SetMaxNofDrawnEvents(fMaxNofDrawnEvents); fSeDisplay->SetOutDir(fOutputDir); + fSeDisplay->SetLELimits(-60.0, 200.0); fSeDisplay->XOffsetHistos(fXOffsetHisto); //----------------------------------------------------------- @@ -164,6 +165,7 @@ InitStatus CbmRichMCbmQaReal::Init() fSeDsply_TR->SetMaxNofDrawnEvents(fMaxNofDrawnEvents); fSeDsply_TR->SetOutDir(fOutputDir); fSeDsply_TR->XOffsetHistos(fXOffsetHisto); + fSeDsply_TR->SetLELimits(-60.0, 200.0); fSeDsply_TR->SetCanvasDir("SE_Corr"); //----------------------------------------------------------- @@ -254,6 +256,12 @@ void CbmRichMCbmQaReal::InitHistograms() fHM->Create2<TH2D>("fhTofRichX_stack3", "fhTofRichX_stack3;Rich Hit X [cm];TofHit X [cm];Entries", 67, -20.1 + fXOffsetHisto, 20.1 + fXOffsetHisto, 400, -50, 110); fHM->Create2<TH2D>("fhTofRichY", "fhTofRichY;Rich Hit Y [cm];TofHit Y [cm];Entries", 84, -25.2, 25.2, 200, -80, 80); + fHM->Create2<TH2D>("fhTofRichY_stack1", "fhTofRichY_stack1;Rich Hit Y [cm];TofHit Y [cm];Entries", 84, -25.2, 25.2, + 200, -80, 80); + fHM->Create2<TH2D>("fhTofRichY_stack2", "fhTofRichY_stack2;Rich Hit Y [cm];TofHit Y [cm];Entries", 84, -25.2, 25.2, + 200, -80, 80); + fHM->Create2<TH2D>("fhTofRichY_stack3", "fhTofRichY_stack3;Rich Hit Y [cm];TofHit Y [cm];Entries", 84, -25.2, 25.2, + 200, -80, 80); //fHM->Create2<TH2D>("fhTofRichRingHitX","fhTofRichRingHitX;Rich Ring Hit X [cm];TofHit X [cm];Entries", 67, -20.1 + fXOffsetHisto, 20.1 + fXOffsetHisto, 400, -50, 110); fHM->Create2<TH2D>("fhTofTrackRichHitX", "fhTofTrackRichHitX;RICH Hit X [cm];TofTrack X [cm];Entries", 67, -20.1 + fXOffsetHisto, 20.1 + fXOffsetHisto, 400, -50, 110); @@ -374,6 +382,25 @@ void CbmRichMCbmQaReal::InitHistograms() fHM->Create3<TH3D>("fhTofXYZ", "fhTofXYZ;Tof Hit X [cm];TofHit Z [cm];Tof Hit Y [cm];Entries", 100, -20, 20, 141, 230., 370., 100, -20, 20); fHM->Create2<TH2D>("fhTofHitsXY", "fhTofHitsXY;Tof Hit X [cm];Tof Hit Y [cm];Entries", 100, -20, 20, 200, -80, 80); + + for (auto moduleIds = 0; moduleIds < 5; moduleIds++) { + fHM->Create2<TH2D>(Form("fhTofHitsXY_%u", moduleIds), + Form("fhTofHitsXY_%u;Tof Hit X [cm];Tof Hit Y [cm];Entries", moduleIds), 200, -100, 100, 200, + -80, 80); + fHM->Create2<TH2D>(Form("fhTofHitsZX_%u", moduleIds), + Form("fhTofHitsZX_%u;Tof Hit X [cm];Tof Hit Y [cm];Entries", moduleIds), 200, 200, 400, 200, + -100, 100); + fHM->Create2<TH2D>(Form("fhTofRichX_%u", moduleIds), + Form("fhTofRichX_%u;Rich Hit X [cm];TofHit X [cm];Entries", moduleIds), 67, + -20.1 + fXOffsetHisto, 20.1 + fXOffsetHisto, 400, -50, 110); + fHM->Create2<TH2D>(Form("fhTofRichY_%u", moduleIds), + Form("fhTofRichY_%u;Rich Hit Y [cm];TofHit Y [cm];Entries", moduleIds), 84, -25.2, 25.2, 200, + -80, 80); + fHM->Create2<TH2D>(Form("fhTofRichHitsResidual_%u", moduleIds), + Form("fhTofRichHitsResidual_%u;Rich-Tof hit X [cm];Rich-Tof hit Y [cm];Entries", moduleIds), + 150, -15.0, 15.0, 150, -15.0, 15.0); + } + fHM->Create1<TH1D>("fhTofHitsZ", "fhTofHitsZ;Z [cm];Entries", 350, -0.5, 349.5); fHM->Create2<TH2D>("fhTofHitsXZ", "fhTofHitsXZ;Z [cm];X [cm];Entries", 350, -0.5, 349.5, 400, -50, 110); //Tof Tracks @@ -421,38 +448,38 @@ void CbmRichMCbmQaReal::InitHistograms() fHM->Create1<TH1D>("fhTrackRingDistance_corr", "fhTrackRingDistance_corr;TrackRingDistance [cm];Entries", 31, -0.5, 30.5); - fHM->Create1<TH1D>("fhTofBetaTracksWithHitsNoRing", "fhTofBetaTracksWithHitsNoRing; \\beta;Entries", 151, -0.005, + fHM->Create1<TH1D>("fhTofBetaTracksWithHitsNoRing", "fhTofBetaTracksWithHitsNoRing; \\beta;Entries", 301, -1.505, 1.505); fHM->Create1<TH1D>("fhTofBetaTracksWithHits", "fhTofBetaTracksWithHits; \\beta;Entries", 151, -0.005, 1.505); fHM->Create1<TH1D>("fhTofBetaTracksNoRing", "fhTofBetaTracksNoRing; \\beta;Entries", 151, -0.005, 1.505); fHM->Create1<TH1D>("fhTofBetaTrackswithClosestRingInRange", "fhTofBetaTrackswithClosestRingInRange; \\beta;Entries", - 151, -0.005, 1.505); + 301, -1.505, 1.505); fHM->Create1<TH1D>("fhRichRingBeta", "fhRichRingBeta; \\beta;Entries", 151, -0.005, 1.505); fHM->Create1<TH1D>("fhRichRingBeta_GoodRing", "fhRichRingBeta_GoodRing; \\beta;Entries", 151, -0.005, 1.505); - fHM->Create1<TH1D>("fhTofBetaRing", "fhTofBetaRing; \\beta;Entries", 151, -0.005, 1.505); - fHM->Create1<TH1D>("fhTofBetaAll", "fhTofBetaAll; \\beta;Entries", 151, -0.005, 1.505); - fHM->Create2<TH2D>("fhTofBetaVsRadius", "fhTofBetaVsRadius; \\beta;ring radius [cm];Entries", 151, -0.005, 1.505, 100, + fHM->Create1<TH1D>("fhTofBetaRing", "fhTofBetaRing; \\beta;Entries", 301, -1.505, 1.505); + fHM->Create1<TH1D>("fhTofBetaAll", "fhTofBetaAll; \\beta;Entries", 301, -1.505, 1.505); + fHM->Create2<TH2D>("fhTofBetaVsRadius", "fhTofBetaVsRadius; \\beta;ring radius [cm];Entries", 301, -1.505, 1.505, 100, 0., 7.); - fHM->Create2<TH2D>("fhTofBetaRingDist", "fhTofBetaRingDist; \\beta;ring Dist [cm];Entries", 151, -0.005, 1.505, 100, + fHM->Create2<TH2D>("fhTofBetaRingDist", "fhTofBetaRingDist; \\beta;ring Dist [cm];Entries", 301, -1.505, 1.505, 100, 0., 20.); fHM->Create1<TH1D>("fhTofBetaAllFullAcc", "fhTofBetaAllFullAcc; \\beta;Entries", 301, -1.505, 1.505); fHM->Create1<TH1D>("fhRingDeltaTime", "fhRingDeltaTime; \\Delta Time/ns;Entries", 101, -10.1, 10.1); fHM->Create1<TH1D>("fhRingToTs", "fhRingToTs; ToT/ns;Entries", 601, 9.975, 40.025); - fHM->Create1<TH1D>("fhRingLE", "fhRingLE;LE/ns;Entries", 201, -0.5, 200.5); - fHM->Create1<TH1D>("fhGoodRingLE", "fhGoodRingLE;LE/ns;Entries", 201, -0.5, 200.5); - fHM->Create1<TH1D>("fhRingNoClTrackLE", "fhRingNoClTrackLE;LE/ns;Entries", 201, -0.5, 200.5); - fHM->Create1<TH1D>("fhRingClTrackFarAwayLE", "fhRingClTrackFarAwayLE;LE/ns;Entries", 201, -0.5, 200.5); - fHM->Create2<TH2D>("fhRingLEvsToT", "fhRingLEvsToT;LE/ns;ToT/ns;Entries", 201, -0.5, 200.5, 601, 9.975, 40.025); + fHM->Create1<TH1D>("fhRingLE", "fhRingLE;LE/ns;Entries", 261, -60.5, 200.5); + fHM->Create1<TH1D>("fhGoodRingLE", "fhGoodRingLE;LE/ns;Entries", 261, -60.5, 200.5); + fHM->Create1<TH1D>("fhRingNoClTrackLE", "fhRingNoClTrackLE;LE/ns;Entries", 261, -60.5, 200.5); + fHM->Create1<TH1D>("fhRingClTrackFarAwayLE", "fhRingClTrackFarAwayLE;LE/ns;Entries", 231, -30.5, 200.5); + fHM->Create2<TH2D>("fhRingLEvsToT", "fhRingLEvsToT;LE/ns;ToT/ns;Entries", 261, -60.5, 200.5, 601, 9.975, 40.025); fHM->Create1<TH1D>("fhInnerRingDeltaTime", "fhInnerRingDeltaTime; \\Delta Time/ns;Entries", 101, -10.1, 10.1); fHM->Create1<TH1D>("fhInnerRingToTs", "fhInnerRingToTs; ToT/ns;Entries", 601, 9.975, 40.025); - fHM->Create1<TH1D>("fhInnerRingLE", "fhInnerRingLE;LE/ns;Entries", 201, -0.5, 200.5); - fHM->Create1<TH1D>("fhInnerGoodRingLE", "fhInnerGoodRingLE;LE/ns;Entries", 201, -0.5, 200.5); - fHM->Create1<TH1D>("fhInnerRingNoClTrackLE", "fhInnerRingNoClTrackLE;LE/ns;Entries", 201, -0.5, 200.5); - fHM->Create1<TH1D>("fhInnerRingClTrackFarAwayLE", "fhInnerRingClTrackFarAwayLE;LE/ns;Entries", 201, -0.5, 200.5); + fHM->Create1<TH1D>("fhInnerRingLE", "fhInnerRingLE;LE/ns;Entries", 261, -60.5, 200.5); + fHM->Create1<TH1D>("fhInnerGoodRingLE", "fhInnerGoodRingLE;LE/ns;Entries", 261, -60.5, 200.5); + fHM->Create1<TH1D>("fhInnerRingNoClTrackLE", "fhInnerRingNoClTrackLE;LE/ns;Entries", 261, -60.5, 200.5); + fHM->Create1<TH1D>("fhInnerRingClTrackFarAwayLE", "fhInnerRingClTrackFarAwayLE;LE/ns;Entries", 261, -60.5, 200.5); fHM->Create1<TH1D>("fhInnerRingFlag", "fhInnerRingFlag;Has|HasNot;Entries", 2, -0.5, 1.5); fHM->Create1<TH1D>("fhNofInnerHits", "fhNofInnerHits;#Hits;Entries", 31, -0.5, 30.5); @@ -479,7 +506,41 @@ void CbmRichMCbmQaReal::InitHistograms() -20 + fXOffsetHisto, 30 + fXOffsetHisto, 180, -90, 90); // projected in RICH Plane - fHM->Create1<TH1D>("fhHitTimeEvent", "fhHitTimeEvent;time [ns];Entries", 700, -100., 600); + fHM->Create1<TH1D>("fhHitTimeEvent", "fhHitTimeEvent;time [ns];Entries", 300, -100., 200); + + for (auto i = 0; i < 5; ++i) + fHM->Create2<TH2D>(Form("fhTofHitXZ_Station_%u", i), Form("fhTofHitXZ_Station_%u;Z [cm];X [cm];Entries", i), 350, + -0.5, 349.5, 400, -50, 110); + + fHM->Create1<TH1D>("fhT0DigiMultiplicity", "fhT0DigiMultiplicity;multiplicity; Entries", 16, -1.5, 14.5); + fHM->Create1<TH1D>("fhT0DigiTime", "fhT0DigiTime;time [ns]; Entries", 500, 0., 100.); + fHM->Create1<TH1D>("fhT0DigiTimeEvent", "fhT0DigiTimeEvent;time [ns]; Entries", 500, 0., 100.); + + //Hit Time Plots + if (fDoTimePlots) { + fHM->Create1<TH1D>("fhHitTimeMeanRichHit", "fhHitTimeMeanRichHit;time [ns];Entries", 600, -30., 30); + fHM->Create1<TH1D>("fhHitTimeMeanRichHitVsEvent", "fhHitTimeMeanRichHitVsEvent;time [ns];Entries", 300, -100., 200); + fHM->Create1<TH1D>("fhHitTimeMeanTofHitVsEvent", "fhHitTimeMeanTofHitVsEvent;time [ns];Entries", 300, -100., 200); + fHM->Create1<TH1D>("fhHitTimeMeanRichHitVsMeanTof", "fhHitTimeMeanRichHitVsMeanTof;time [ns];Entries", 300, -100., + 200); + + for (auto i = 0; i < 72; ++i) + fHM->Create1<TH1D>(Form("/HitTime/fhHitTimeEvent_%u", i), + Form("/HitTime/fhHitTimeEvent_%u; time [ns];Entries", i), 300, -100, 200); + + for (auto i = 0; i < 72; ++i) + fHM->Create1<TH1D>(Form("/HitTime/fhHitTimeMeanRichHit_%u", i), + Form("/HitTime/fhHitTimeMeanRichHit_%u; time [ns];Entries", i), 300, -30, 30); + + for (auto i = 0; i < 72; ++i) + fHM->Create2<TH2D>(Form("/HitTime_2D/fhHitTimeEvent_%u", i), + Form("/HitTime_2D/fhHitTimeEvent_%u; time [ns], ToT [ns];Entries", i), 300, -100, 200, 30, 15, + 30); + + for (auto i = 0; i < 33; ++i) + fHM->Create1<TH1D>(Form("/HitTime_chnl/fhHitTimeEvent_chnl_%u", i), + Form("/HitTime_chnl/fhHitTimeEvent_chnl_%u; time [ns];Entries", i), 300, -100, 200); + } // End Hit Time Plots } @@ -492,7 +553,6 @@ void CbmRichMCbmQaReal::Exec(Option_t* /*option*/) uint64_t tsStartTime = 0; if (nullptr != fTSHeader) tsStartTime = fTSHeader->GetTsStartTime(); - uint64_t TSMinTime = 0; if (fDigiHitsInitialized == false) { auto nOfCbmEvent = fCbmEvent->GetEntriesFast(); if (nOfCbmEvent > 0) { @@ -533,7 +593,7 @@ void CbmRichMCbmQaReal::Exec(Option_t* /*option*/) fHM->H1("fhT0DigisTimeLogZoom")->GetXaxis()->SetLimits(minTime, minTime + dTZoom1); fHM->H1("fhT0DigisTimeLogZoom2")->GetXaxis()->SetLimits(minTime, minTime + dTZoom2); - TSMinTime = tsStartTime; + fTSMinTime = tsStartTime; fDigiHitsInitialized = true; } } @@ -541,8 +601,8 @@ void CbmRichMCbmQaReal::Exec(Option_t* /*option*/) if (fDigiHitsInitialized == true) { - double TsTimeAfterStart = static_cast<double>(tsStartTime - TSMinTime); - int nofRichDigis = fDigiMan->GetNofDigis(ECbmModuleId::kRich); + double TsTimeAfterStart = static_cast<double>(tsStartTime - fTSMinTime); + int nofRichDigis = fDigiMan->GetNofDigis(ECbmModuleId::kRich); fHM->H1("fhNofRichDigisInTimeslice")->Fill(nofRichDigis); for (int i = 0; i < nofRichDigis; i++) { const CbmRichDigi* digi = fDigiMan->Get<CbmRichDigi>(i); @@ -631,11 +691,10 @@ void CbmRichMCbmQaReal::Exec(Option_t* /*option*/) auto fNCbmEvent = fCbmEvent->GetEntriesFast(); for (int i = 0; i < fNCbmEvent; i++) { - fHM->H1("fhNofCbmEvents")->Fill(1); CbmEvent* ev = static_cast<CbmEvent*>(fCbmEvent->At(i)); - if (fTriggerRichHits != 0 && (ev->GetNofData(ECbmDataType::kRichHit) < fTriggerRichHits)) continue; - if (fTriggerTofHits != 0 && (ev->GetNofData(ECbmDataType::kTofHit) < fTriggerTofHits)) continue; + fHM->H1("fhNofCbmEvents")->Fill(1); + //if (fTriggerTofHits != 0 && (ev->GetNofData(ECbmDataType::kTofHit) < fTriggerTofHits)) continue; //if (ev->GetNofData(ECbmDataType::kTofHit) > (fTriggerTofHits+10) ) continue; @@ -646,8 +705,7 @@ void CbmRichMCbmQaReal::Exec(Option_t* /*option*/) a = 0; fEventPnt = ev; - fCbmEventStartTime = fEventPnt->GetStartTime(); - + fCbmEventStartTime = ev->GetStartTime(); // Scan Event to find first Digi that triggered. // std::cout<<"Sts Digis:"<< ev->GetNofData(kStsDigi)<<std::endl; @@ -658,15 +716,79 @@ void CbmRichMCbmQaReal::Exec(Option_t* /*option*/) // unsigned int flagRich = 0; Double_t startTime = std::numeric_limits<Double_t>::max(); + fHM->H1("fhT0DigiMultiplicity")->Fill(ev->GetNofData(ECbmDataType::kT0Digi)); + //std::cout<<ev->GetNofData(ECbmDataType::kT0Digi)<<std::endl; + for (int j = 0; j < ev->GetNofData(ECbmDataType::kT0Digi); j++) { + auto iT0Digi = ev->GetIndex(ECbmDataType::kT0Digi, j); + const CbmTofDigi* T0Digi = nullptr; + if (fT0Digis) T0Digi = &(fT0Digis->at(iT0Digi)); + assert(T0Digi); + fHM->H1("fhT0DigiTimeEvent")->Fill(T0Digi->GetTime() - fCbmEventStartTime); + } + + //std::cout<<"NofT0Digis in TS: "<< fT0Digis->size() <<std::endl; + Double_t minT0TimeDiff = std::numeric_limits<Double_t>::max(); + Double_t T0Time = std::numeric_limits<Double_t>::max(); + for (auto j = 0; j < fT0Digis->size(); j++) { + const CbmTofDigi* T0Digi = nullptr; + if (fT0Digis) T0Digi = &(fT0Digis->at(j)); + assert(T0Digi); + Double_t timeDiffT0 = T0Digi->GetTime() - fCbmEventStartTime; + if (std::fabs(timeDiffT0) < std::fabs(minT0TimeDiff)) { + minT0TimeDiff = timeDiffT0; + T0Time = T0Digi->GetTime(); + } + } + //std::cout<<"T0Digistime: "<< T0Time << " EventStartTime:" << fCbmEventStartTime <<" Time DIff: "<< minT0TimeDiff <<std::endl; + fHM->H1("fhT0DigiTime")->Fill(minT0TimeDiff); + + Double_t meanRichHitTime = 0.; + if (fDoTimePlots) { + for (int j = 0; j < ev->GetNofData(ECbmDataType::kRichHit); j++) { + auto iRichHit = ev->GetIndex(ECbmDataType::kRichHit, j); + CbmRichHit* richHit = static_cast<CbmRichHit*>(fRichHits->At(iRichHit)); + meanRichHitTime += richHit->GetTime(); + } + if (ev->GetNofData(ECbmDataType::kRichHit) > 0) meanRichHitTime /= ev->GetNofData(ECbmDataType::kRichHit); + + Double_t meanTofHitTime = 0.; + for (int j = 0; j < ev->GetNofData(ECbmDataType::kTofHit); j++) { + auto iTofHit = ev->GetIndex(ECbmDataType::kTofHit, j); + CbmTofHit* tofHit = static_cast<CbmTofHit*>(fTofHits->At(iTofHit)); + meanTofHitTime += tofHit->GetTime(); + } + if (ev->GetNofData(ECbmDataType::kTofHit) > 0) meanTofHitTime /= ev->GetNofData(ECbmDataType::kTofHit); + + fHM->H1("fhHitTimeMeanRichHitVsEvent")->Fill(meanRichHitTime - fCbmEventStartTime); + fHM->H1("fhHitTimeMeanTofHitVsEvent")->Fill(meanTofHitTime - fCbmEventStartTime); + fHM->H1("fhHitTimeMeanRichHitVsMeanTof")->Fill(meanRichHitTime - meanTofHitTime); + } + for (int j = 0; j < ev->GetNofData(ECbmDataType::kRichHit); j++) { auto iRichHit = ev->GetIndex(ECbmDataType::kRichHit, j); evRichHitIndx.push_back(iRichHit); CbmRichHit* richHit = static_cast<CbmRichHit*>(fRichHits->At(iRichHit)); + uint32_t pmtId = (((richHit->GetAddress()) >> 24) & 0xF) * 9 + (((richHit->GetAddress()) >> 20) & 0xF); fHM->H1("fhHitTimeEvent")->Fill(richHit->GetTime() - fCbmEventStartTime); + + if (fDoTimePlots) { + uint32_t DiRichId = (((richHit->GetAddress()) >> 24) & 0xF) * 18 + (((richHit->GetAddress()) >> 20) & 0xF) * 2 + + (((richHit->GetAddress()) >> 16) & 0xF); + + fHM->H1(Form("/HitTime/fhHitTimeEvent_%u", DiRichId))->Fill(richHit->GetTime() - fCbmEventStartTime); + fHM->H1(Form("/HitTime/fhHitTimeMeanRichHit_%u", DiRichId))->Fill(richHit->GetTime() - meanRichHitTime); + fHM->H1("fhHitTimeMeanRichHit")->Fill(richHit->GetTime() - meanRichHitTime); + + fHM->H2(Form("/HitTime_2D/fhHitTimeEvent_%u", DiRichId)) + ->Fill(richHit->GetTime() - fCbmEventStartTime, richHit->GetToT()); + if (DiRichId == 52) + fHM->H1(Form("/HitTime_chnl/fhHitTimeEvent_chnl_%u", richHit->GetAddress() & 0xFFFF)) + ->Fill(richHit->GetTime() - fCbmEventStartTime); + } + fHM->H1("fhRichHitToTEvent")->Fill(richHit->GetToT()); fHM->H2("fhRichHitXYEvent")->Fill(richHit->GetX(), richHit->GetY()); //Blob finder - uint32_t pmtId = (((richHit->GetAddress()) >> 20) & 0xF) + (((richHit->GetAddress()) >> 24) & 0xF) * 9; pmtHits[pmtId]++; //std::cout<<"\t\t * "<<i<<". Event, Hit "<< j <<": "<< iRichHit <<"\t " << std::fixed << std::setprecision(5) << richHit->GetTime() <<std::endl; @@ -696,32 +818,66 @@ void CbmRichMCbmQaReal::Exec(Option_t* /*option*/) CbmTofHit* tofHit = static_cast<CbmTofHit*>(fTofHits->At(iTofHit)); if (tofHit->GetTime() < startTime) { startTime = tofHit->GetTime(); /* flagRich = 0;*/ } if (tofHit->GetZ() < 2.) continue; // Cut T0 away! - fHM->H2("fhTofRichX")->Fill(richHit->GetX(), tofHit->GetX()); + + auto TofModulId = (tofHit->GetAddress() >> 4) & 0x3F; + auto TofModulType = (tofHit->GetAddress() >> 11) & 0xF; + //std::cout<<std::hex<<tofHit->GetAddress()<<std::dec<<" Type: "<<TofModulType<<" Id: "<<TofModulId<<std::endl; + if (TofModulType != 0) continue; + //fHM->H2("fhTofRichX")->Fill(richHit->GetX(), tofHit->GetX()); + + fHM->H2(Form("fhTofHitXZ_Station_%u", TofModulId))->Fill(tofHit->GetZ(), tofHit->GetX()); //Befor tof_v20b /*if (tofHit->GetZ()> 230. && tofHit->GetZ() < 250) fHM->H2("fhTofRichX_stack1")->Fill(richHit->GetX(),tofHit->GetX()); if (tofHit->GetZ()> 250. && tofHit->GetZ() < 265) fHM->H2("fhTofRichX_stack2")->Fill(richHit->GetX(),tofHit->GetX()); if (tofHit->GetZ()> 265. && tofHit->GetZ() < 285) fHM->H2("fhTofRichX_stack3")->Fill(richHit->GetX(),tofHit->GetX()); */ - if (tofHit->GetZ() > 230. && tofHit->GetZ() < 255) + if (TofModulId == 0) { //(tofHit->GetZ() > 230. && tofHit->GetZ() < 255) fHM->H2("fhTofRichX_stack1")->Fill(richHit->GetX(), tofHit->GetX()); - if (tofHit->GetZ() >= 255. && tofHit->GetZ() < 272) + fHM->H2("fhTofRichY_stack1")->Fill(richHit->GetY(), tofHit->GetY()); + fHM->H2("fhTofRichX")->Fill(richHit->GetX(), tofHit->GetX()); + fHM->H2("fhTofRichY")->Fill(richHit->GetY(), tofHit->GetY()); + fHM->H2("fhTofHitsXY")->Fill(tofHit->GetX(), tofHit->GetY()); + } + if (TofModulId == 1) { //(tofHit->GetZ() >= 255. && tofHit->GetZ() < 272) fHM->H2("fhTofRichX_stack2")->Fill(richHit->GetX(), tofHit->GetX()); - if (tofHit->GetZ() >= 272. && tofHit->GetZ() < 290) + fHM->H2("fhTofRichY_stack2")->Fill(richHit->GetY(), tofHit->GetY()); + fHM->H2("fhTofRichX")->Fill(richHit->GetX(), tofHit->GetX()); + fHM->H2("fhTofRichY")->Fill(richHit->GetY(), tofHit->GetY()); + fHM->H2("fhTofHitsXY")->Fill(tofHit->GetX(), tofHit->GetY()); + } + if (TofModulId == 2) { //(tofHit->GetZ() >= 272. && tofHit->GetZ() < 290) fHM->H2("fhTofRichX_stack3")->Fill(richHit->GetX(), tofHit->GetX()); + fHM->H2("fhTofRichY_stack3")->Fill(richHit->GetY(), tofHit->GetY()); + fHM->H2("fhTofRichX")->Fill(richHit->GetX(), tofHit->GetX()); + fHM->H2("fhTofRichY")->Fill(richHit->GetY(), tofHit->GetY()); + fHM->H2("fhTofHitsXY")->Fill(tofHit->GetX(), tofHit->GetY()); + } + + //fHM->H2("fhTofRichX_zoomed")->Fill(richHit->GetX(), tofHit->GetX()); + //fHM->H2("fhTofRichY_zoomed")->Fill(richHit->GetY(), tofHit->GetY()); - fHM->H2("fhTofRichY")->Fill(richHit->GetY(), tofHit->GetY()); - fHM->H2("fhTofRichX_zoomed")->Fill(richHit->GetX(), tofHit->GetX()); - fHM->H2("fhTofRichY_zoomed")->Fill(richHit->GetY(), tofHit->GetY()); + //fHM->H2("fhTofHitsXY")->Fill(tofHit->GetX(), tofHit->GetY()); - fHM->H2("fhTofHitsXY")->Fill(tofHit->GetX(), tofHit->GetY()); + fHM->H2(Form("fhTofHitsXY_%u", TofModulId))->Fill(tofHit->GetX(), tofHit->GetY()); + fHM->H2(Form("fhTofHitsZX_%u", TofModulId))->Fill(tofHit->GetZ(), tofHit->GetX()); + fHM->H2(Form("fhTofRichX_%u", TofModulId))->Fill(richHit->GetX(), tofHit->GetX()); + fHM->H2(Form("fhTofRichY_%u", TofModulId))->Fill(richHit->GetY(), tofHit->GetY()); + TVector3 hitExtr = extrapolate(tofHit, richHit->GetZ()); + fHM->H2(Form("fhTofRichHitsResidual_%u", TofModulId)) + ->Fill(richHit->GetX() - hitExtr.X(), richHit->GetY() - hitExtr.Y()); } } //std::cout<<"Diff in StartTime DigiToHit: "<< startTime - fCbmEventStartTime << "\t" <<flagRich<<std::endl; fCbmEventStartTime = startTime; - fSeDisplay->DrawEvent(ev, ringIndx, 1); + if (bSeDisplayRingOnly) { + if (ringIndx.size() > 0) fSeDisplay->DrawEvent(ev, ringIndx, 1); + } + else { + fSeDisplay->DrawEvent(ev, ringIndx, 1); + } // std::cout<<DrawCbmEvent<<std::endl; // for (int j=0;j<ev->GetNofData(ECbmDataType::kRichDigi);j++){ @@ -907,17 +1063,19 @@ void CbmRichMCbmQaReal::Exec(Option_t* /*option*/) fHM->H2("fhTofTrackRichHitX_oBetacuts_dtime_10")->Fill(richHit->GetX(), track->GetFitX(RichZPos)); fHM->H2("fhTofTrackRichHitY_oBetacuts_dtime_10")->Fill(richHit->GetY(), track->GetFitY(RichZPos)); } - - if (track->GetNofHits() == 4) { - for (int l = 0; l < track->GetNofHits(); ++l) { - auto hitIndex = track->GetHitIndex(l); - auto iTofHit = ev->GetIndex(ECbmDataType::kTofHit, hitIndex); - const CbmTofHit* tofHit = static_cast<CbmTofHit*>(fTofHits->At(iTofHit)); - if (tofHit->GetZ() < 2.) continue; // Cut T0 away! - fHM->H2("fhTofTrackHitRichHitX_oBetacuts_dtime")->Fill(richHit->GetX(), tofHit->GetX()); - fHM->H2("fhTofTrackHitRichHitY_oBetacuts_dtime")->Fill(richHit->GetY(), tofHit->GetY()); - } - } + // if (track->GetNofHits() == 4) { + // for (int l = 0; l < track->GetNofHits(); ++l) { + // size_t hitIndex = track->GetHitIndex(l); + // size_t iTofHit = ev->GetIndex(ECbmDataType::kTofHit, hitIndex); + // //if (fEventNum == 88) continue; // TODO: workaround for run 2060 + // if (fEventNum == 4) continue; + // if (iTofHit > -1) continue; + // const CbmTofHit* tofHit = static_cast<CbmTofHit*>(fTofHits->At(iTofHit)); + // if (tofHit->GetZ() < 2.) continue; // Cut T0 away! + // fHM->H2("fhTofTrackHitRichHitX_oBetacuts_dtime")->Fill(richHit->GetX(), tofHit->GetX()); + // fHM->H2("fhTofTrackHitRichHitY_oBetacuts_dtime")->Fill(richHit->GetY(), tofHit->GetY()); + // } + // } } } else { @@ -1411,6 +1569,17 @@ void CbmRichMCbmQaReal::DrawHist() DrawH2(fHM->H2("fhTofRichX_stack3")); } + { + TCanvas* c = fHM->CreateCanvas("TofRichY_Stacks", "TofRichY_Stacks", 1800, 600); + c->Divide(3, 1); + c->cd(1); + DrawH2(fHM->H2("fhTofRichY_stack1")); + c->cd(2); + DrawH2(fHM->H2("fhTofRichY_stack2")); + c->cd(3); + DrawH2(fHM->H2("fhTofRichY_stack3")); + } + { fHM->CreateCanvas("TofRichRingXZ", "TofRichRingXZ", 1200, 1200); @@ -1429,6 +1598,86 @@ void CbmRichMCbmQaReal::DrawHist() DrawH2(fHM->H2("fhTofHitsXY")); } + { + TCanvas* c = fHM->CreateCanvas("TofHitsXY_moduleIds", "TofHitsXY_moduleIds", 2500, 500); + + c->Divide(5, 1); + c->cd(1); + DrawH2(fHM->H2("fhTofHitsXY_0")); + c->cd(2); + DrawH2(fHM->H2("fhTofHitsXY_1")); + c->cd(3); + DrawH2(fHM->H2("fhTofHitsXY_2")); + c->cd(4); + DrawH2(fHM->H2("fhTofHitsXY_3")); + c->cd(5); + DrawH2(fHM->H2("fhTofHitsXY_4")); + } + + { + TCanvas* c = fHM->CreateCanvas("TofHitsZX_moduleIds", "TofHitsZX_moduleIds", 2500, 500); + + c->Divide(5, 1); + c->cd(1); + DrawH2(fHM->H2("fhTofHitsZX_0")); + c->cd(2); + DrawH2(fHM->H2("fhTofHitsZX_1")); + c->cd(3); + DrawH2(fHM->H2("fhTofHitsZX_2")); + c->cd(4); + DrawH2(fHM->H2("fhTofHitsZX_3")); + c->cd(5); + DrawH2(fHM->H2("fhTofHitsZX_4")); + } + + { + TCanvas* c = fHM->CreateCanvas("TofRichHitsX_moduleIds", "TofRichHitsX_moduleIds", 2500, 500); + + c->Divide(5, 1); + c->cd(1); + DrawH2(fHM->H2("fhTofRichX_0")); + c->cd(2); + DrawH2(fHM->H2("fhTofRichX_1")); + c->cd(3); + DrawH2(fHM->H2("fhTofRichX_2")); + c->cd(4); + DrawH2(fHM->H2("fhTofRichX_3")); + c->cd(5); + DrawH2(fHM->H2("fhTofRichX_4")); + } + + { + TCanvas* c = fHM->CreateCanvas("TofRichHitsY_moduleIds", "TofRichHitsY_moduleIds", 2500, 500); + + c->Divide(5, 1); + c->cd(1); + DrawH2(fHM->H2("fhTofRichY_0")); + c->cd(2); + DrawH2(fHM->H2("fhTofRichY_1")); + c->cd(3); + DrawH2(fHM->H2("fhTofRichY_2")); + c->cd(4); + DrawH2(fHM->H2("fhTofRichY_3")); + c->cd(5); + DrawH2(fHM->H2("fhTofRichY_4")); + } + + { + TCanvas* c = fHM->CreateCanvas("fhTofRichHitsResidual_moduleIds", "fhTofRichHitsResidual_moduleIds", 2500, 500); + + c->Divide(5, 1); + c->cd(1); + DrawH2(fHM->H2("fhTofRichHitsResidual_0")); + c->cd(2); + DrawH2(fHM->H2("fhTofRichHitsResidual_1")); + c->cd(3); + DrawH2(fHM->H2("fhTofRichHitsResidual_2")); + c->cd(4); + DrawH2(fHM->H2("fhTofRichHitsResidual_3")); + c->cd(5); + DrawH2(fHM->H2("fhTofRichHitsResidual_4")); + } + { fHM->CreateCanvas("TofTrackRichRingXY", "TofTrackRichRingXY", 1200, 1200); @@ -1837,6 +2086,18 @@ void CbmRichMCbmQaReal::DrawHist() fHM->CreateCanvas("HitTimeEvent", "HitTimeEvent", 1200, 1200); DrawH1(fHM->H1("fhHitTimeEvent")); } + + { + TCanvas* c = fHM->CreateCanvas("T0", "T0", 2400, 800); + //c->SetLogy(); + c->Divide(3, 1); + c->cd(1); + DrawH1(fHM->H1("fhT0DigiMultiplicity")); + c->cd(2); + DrawH1(fHM->H1("fhT0DigiTime")); + c->cd(3); + DrawH1(fHM->H1("fhT0DigiTimeEvent")); + } } void CbmRichMCbmQaReal::DrawRing(CbmRichRing* ring) @@ -2324,4 +2585,17 @@ Bool_t CbmRichMCbmQaReal::cutDistance(std::pair<int, double>& clTrack) return false; } + +TVector3 CbmRichMCbmQaReal::extrapolate(CbmTofHit* tofHit, Double_t Z) +{ + TVector3 extVec(0, 0, 0); + TVector3 vertex(0, 0, 0); + Double_t factor = (Z - vertex.Z()) / (tofHit->GetZ() - vertex.Z()); + Double_t x = vertex.X() + factor * (tofHit->GetX() - vertex.X()); + Double_t y = vertex.Y() + factor * (tofHit->GetY() - vertex.Y()); + extVec.SetXYZ(x, y, Z); + + return extVec; +} + ClassImp(CbmRichMCbmQaReal) diff --git a/reco/detectors/rich/mcbm/CbmRichMCbmQaReal.h b/reco/detectors/rich/mcbm/CbmRichMCbmQaReal.h index c216ea57b8..bef7a06ae0 100644 --- a/reco/detectors/rich/mcbm/CbmRichMCbmQaReal.h +++ b/reco/detectors/rich/mcbm/CbmRichMCbmQaReal.h @@ -110,8 +110,19 @@ public: */ void SetTriggerRichHits(Int_t val = 0) { fTriggerRichHits = val; } + + /** + * Set a flag to draw only Single Event Displays with minimum one ring. + */ + void SetSEDisplayRingOnly(bool val = true) { bSeDisplayRingOnly = val; } + + /** + * Activate generation of Time related histograms + */ + void ActivateTimeHistograms(bool val = true) { fDoTimePlots = val; } + /** - * Set an ToT cut of the RICH Hits. + * Set an ToT cut of the RICH Hits. */ void SetTotRich(Double_t min, Double_t max) { @@ -174,6 +185,7 @@ private: Int_t fTracksinRichWithRichHits[4] = {0, 0, 0, 0}; + uint64_t fTSMinTime = 0; string fOutputDir; // output dir for results @@ -183,12 +195,18 @@ private: bool fDoWriteHistToFile = true; bool fDoDrawCanvas = true; + bool bSeDisplayRingOnly = false; + bool fDigiHitsInitialized = false; + bool fDoTimePlots = false; + bool RestrictToFullAcc(CbmTofTracklet* track); bool RestrictToFullAcc(TVector3& pos); bool RestrictToFullAcc(Double_t x, Double_t y); + TVector3 extrapolate(CbmTofHit* tofHit, Double_t Z); + Double_t fCbmEventStartTime = 0.; CbmEvent* fEventPnt = nullptr; diff --git a/reco/detectors/rich/mcbm/CbmRichMCbmQaRichOnly.cxx b/reco/detectors/rich/mcbm/CbmRichMCbmQaRichOnly.cxx index 8f8e72688d..01c1d1902b 100644 --- a/reco/detectors/rich/mcbm/CbmRichMCbmQaRichOnly.cxx +++ b/reco/detectors/rich/mcbm/CbmRichMCbmQaRichOnly.cxx @@ -107,7 +107,7 @@ InitStatus CbmRichMCbmQaRichOnly::Init() fSeDisplay->SetRichHits(fRichHits); fSeDisplay->SetRichRings(fRichRings); ///fSeDisplay->SetTofTracks(fTofTracks); - fSeDisplay->SetTotRich(23.7, 30.); + fSeDisplay->SetTotRich(fTotMin, fTotMax); fSeDisplay->SetMaxNofDrawnEvents(fMaxNofDrawnEvents); fSeDisplay->XOffsetHistos(fXOffsetHisto); fSeDisplay->SetOutDir(fOutputDir); @@ -150,7 +150,7 @@ void CbmRichMCbmQaRichOnly::InitHistograms() -20.1 + fXOffsetHisto, 20.1 + fXOffsetHisto, 84, -25.2, 25.2); fHM->Create1<TH1D>("fhRichRingRadius", "fhRichRingRadius;Ring radius [cm];Entries", 100, 0., 7.); fHM->Create1<TH1D>("fhNofHitsInRing", "fhNofHitsInRing;# hits in ring;Entries", 50, -0.5, 49.5); - fHM->Create2<TH2D>("fhICD", "fhICD;channel;DeltaTime", 2305, -0.5, 2304.5, 31, -15.5, 15.5); + fHM->Create2<TH2D>("fhICD", "fhICD;channel;DeltaTime", 2305, -0.5, 2304.5, 130, -6.5, 6.5); fHM->Create2<TH2D>("fhRichRingRadiusY", "fhRichRingRadiusY;Ring Radius [cm]; Y position[cm];Entries", 70, -0.05, 6.95, 84, -25.2, 25.2); @@ -399,10 +399,10 @@ void CbmRichMCbmQaRichOnly::DrawHist() DrawH2(fHM->H2("fhDigisInChnl")); } - // { - // fHM->CreateCanvas("DigisTimeTot", "DigisTimeTot", 600, 600); - // DrawH2(fHM->H2("fhDigisTimeTot")); - // } + // { + // fHM->CreateCanvas("DigisTimeTot", "DigisTimeTot", 600, 600); + // DrawH2(fHM->H2("fhDigisTimeTot")); + // } { fHM->CreateCanvas("HitsTimeTot", "HitsTimeTot", 600, 600); @@ -654,7 +654,7 @@ void CbmRichMCbmQaRichOnly::DrawFromFile(const string& fileName, const string& o bool CbmRichMCbmQaRichOnly::doToT(CbmRichHit* hit) { bool check = false; - if ((hit->GetToT() > 23.7) && (hit->GetToT() < 30.0)) check = true; + if ((hit->GetToT() > fTotMin) && (hit->GetToT() < fTotMax)) check = true; return check; } diff --git a/reco/detectors/rich/mcbm/CbmRichMCbmQaRichOnly.h b/reco/detectors/rich/mcbm/CbmRichMCbmQaRichOnly.h index 2e39233a89..da68f78947 100644 --- a/reco/detectors/rich/mcbm/CbmRichMCbmQaRichOnly.h +++ b/reco/detectors/rich/mcbm/CbmRichMCbmQaRichOnly.h @@ -109,6 +109,15 @@ public: */ void SetIcdGeneration(bool val = true) { fGenerateICD = val; } + /** + * Set Tot of RICH detector + */ + void SetTotRich(Double_t min, Double_t max) + { + fTotMin = min; + fTotMax = max; + } + private: CbmDigiManager* fDigiMan = nullptr; @@ -123,6 +132,10 @@ private: Double_t fXOffsetHisto; + Double_t fTotMin = 0.0; + + Double_t fTotMax = 100.0; + Int_t fEventNum; Int_t fNofDrawnRings; diff --git a/reco/detectors/rich/mcbm/CbmRichMCbmSEDisplay.cxx b/reco/detectors/rich/mcbm/CbmRichMCbmSEDisplay.cxx index 8e03355400..07cc3ac411 100644 --- a/reco/detectors/rich/mcbm/CbmRichMCbmSEDisplay.cxx +++ b/reco/detectors/rich/mcbm/CbmRichMCbmSEDisplay.cxx @@ -32,6 +32,8 @@ CbmRichMCbmSEDisplay::CbmRichMCbmSEDisplay() , fNofDrawnEvents(0) , fMaxNofDrawnEvents(100) , fOutputDir("result") + , fLEMin(0.0) + , fLEMax(200.0) , fHM(nullptr) { } @@ -46,6 +48,8 @@ CbmRichMCbmSEDisplay::CbmRichMCbmSEDisplay(CbmHistManager* manager) , fNofDrawnEvents(0) , fMaxNofDrawnEvents(100) , fOutputDir("result") + , fLEMin(0.0) + , fLEMax(200.0) , fHM(manager) { } @@ -106,10 +110,13 @@ void CbmRichMCbmSEDisplay::DrawEvent(CbmEvent* ev, std::vector<int>& ringIndx, b 10. + fXOffsetHisto + 6.225, 1, -5., 20); } - TPad* pad_time = new TPad("pad_time", "timeDist", 0, 0, 1, 0.20); - TH1D* timeDistRichHit = new TH1D((ss.str() + "timeDistRichHit").c_str(), ";LE [ns];Entries", 200, 0.0, 200.); - TH1D* timeDistRichHitToT = new TH1D((ss.str() + "timeDistRichHitToT").c_str(), ";LE [ns];Entries", 200, 0.0, 200.); - TH1D* timeDistTofTrack = new TH1D((ss.str() + "timeDistTofTrack").c_str(), ";LE [ns];Entries", 200, 0.0, 200.); + Int_t BinSize = (Int_t)(fLEMax - fLEMin); + TPad* pad_time = new TPad("pad_time", "timeDist", 0, 0, 1, 0.20); + TH1D* timeDistRichHit = new TH1D((ss.str() + "timeDistRichHit").c_str(), ";LE [ns];Entries", BinSize, fLEMin, fLEMax); + TH1D* timeDistRichHitToT = + new TH1D((ss.str() + "timeDistRichHitToT").c_str(), ";LE [ns];Entries", BinSize, fLEMin, fLEMax); + TH1D* timeDistTofTrack = + new TH1D((ss.str() + "timeDistTofTrack").c_str(), ";LE [ns];Entries", BinSize, fLEMin, fLEMax); pad_event->Draw(); pad_time->Draw(); pad_event->cd(); diff --git a/reco/detectors/rich/mcbm/CbmRichMCbmSEDisplay.h b/reco/detectors/rich/mcbm/CbmRichMCbmSEDisplay.h index 093ae38232..d31fa7d98e 100644 --- a/reco/detectors/rich/mcbm/CbmRichMCbmSEDisplay.h +++ b/reco/detectors/rich/mcbm/CbmRichMCbmSEDisplay.h @@ -57,6 +57,15 @@ public: fTotRichMax = max; } + /** + * Set an LE Limits + */ + void SetLELimits(Double_t min, Double_t max) + { + fLEMin = min; + fLEMax = max; + } + /** * Set a pointer to the loaded Rich hits */ @@ -117,6 +126,10 @@ private: std::string fFileName = "Ev"; + Double_t fLEMin; + + Double_t fLEMax; + CbmHistManager* fHM; -- GitLab