Skip to content

Commit a3132a3

Browse files
committed
Move configurable belonging to event selection in proper struct
1 parent f28f5c4 commit a3132a3

File tree

7 files changed

+22
-26
lines changed

7 files changed

+22
-26
lines changed

PWGHF/TableProducer/candidateCreator2Prong.cxx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ struct HfCandidateCreator2Prong {
113113
Configurable<std::string> ccdbUrl{"ccdbUrl", "http://alice-ccdb.cern.ch", "url of the ccdb repository"};
114114
Configurable<std::string> ccdbPathGrp{"ccdbPathGrp", "GLO/GRP/GRP", "Path of the grp file (Run 2)"};
115115
Configurable<std::string> ccdbPathGrpMag{"ccdbPathGrpMag", "GLO/Config/GRPMagField", "CCDB path of the GRPMagField object (Run 3)"};
116-
Configurable<std::string> irSource{"irSource", "ZNC hadronic", "Estimator of the interaction rate (Recommended: pp --> T0VTX, Pb-Pb --> ZNC hadronic)"};
117116

118117
HfEventSelection hfEvSel; // event selection and monitoring
119118
o2::vertexing::DCAFitterN<2> df; // 2-prong vertex fitter
@@ -746,7 +745,7 @@ struct HfCandidateCreator2Prong {
746745
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
747746
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::None, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
748747
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
749-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
748+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
750749
/// monitor the satisfied event selections
751750
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
752751

@@ -765,7 +764,7 @@ struct HfCandidateCreator2Prong {
765764
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
766765
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0C, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
767766
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
768-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
767+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
769768
/// monitor the satisfied event selections
770769
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
771770

@@ -784,7 +783,7 @@ struct HfCandidateCreator2Prong {
784783
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
785784
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0M, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
786785
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
787-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
786+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
788787
/// monitor the satisfied event selections
789788
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
790789

@@ -808,7 +807,7 @@ struct HfCandidateCreator2Prong {
808807
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
809808
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMaskWithUpc<true, CentralityEstimator::None, aod::BcFullInfos>(collision, centrality, ccdb, registry, bcs);
810809
const auto bc = collision.template foundBC_as<aod::BcFullInfos>();
811-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
810+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
812811
/// monitor the satisfied event selections
813812
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
814813

PWGHF/TableProducer/candidateCreator3Prong.cxx

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ struct HfCandidateCreator3Prong {
121121
Configurable<std::string> ccdbUrl{"ccdbUrl", "http://alice-ccdb.cern.ch", "url of the ccdb repository"};
122122
Configurable<std::string> ccdbPathGrp{"ccdbPathGrp", "GLO/GRP/GRP", "Path of the grp file (Run 2)"};
123123
Configurable<std::string> ccdbPathGrpMag{"ccdbPathGrpMag", "GLO/Config/GRPMagField", "CCDB path of the GRPMagField object (Run 3)"};
124-
Configurable<std::string> irSource{"irSource", "ZNC hadronic", "Estimator of the interaction rate (Recommended: pp --> T0VTX, Pb-Pb --> ZNC hadronic)"};
125124
// flags to enable creation for different particle species separately
126125
Configurable<bool> createDplus{"createDplus", false, "enable D+/- candidate creation"};
127126
Configurable<bool> createDs{"createDs", false, "enable Ds+/- candidate creation"};
@@ -903,7 +902,7 @@ struct HfCandidateCreator3Prong {
903902
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
904903
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::None, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
905904
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
906-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
905+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
907906
/// monitor the satisfied event selections
908907
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
909908

@@ -922,7 +921,7 @@ struct HfCandidateCreator3Prong {
922921
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
923922
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0C, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
924923
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
925-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
924+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
926925
/// monitor the satisfied event selections
927926
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
928927

@@ -941,7 +940,7 @@ struct HfCandidateCreator3Prong {
941940
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
942941
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0M, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
943942
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
944-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
943+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
945944
/// monitor the satisfied event selections
946945
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
947946

@@ -965,7 +964,7 @@ struct HfCandidateCreator3Prong {
965964
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
966965
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMaskWithUpc<true, CentralityEstimator::None, aod::BcFullInfos>(collision, centrality, ccdb, registry, bcs);
967966
const auto bc = collision.template foundBC_as<aod::BcFullInfos>();
968-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
967+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
969968
/// monitor the satisfied event selections
970969
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
971970

PWGHF/TableProducer/candidateCreatorCascade.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ struct HfCandidateCreatorCascade {
8989
Configurable<std::string> ccdbPathLut{"ccdbPathLut", "GLO/Param/MatLUT", "Path for LUT parametrization"};
9090
Configurable<std::string> ccdbPathGrp{"ccdbPathGrp", "GLO/GRP/GRP", "Path of the grp file (Run 2)"};
9191
Configurable<std::string> ccdbPathGrpMag{"ccdbPathGrpMag", "GLO/Config/GRPMagField", "CCDB path of the GRPMagField object (Run 3)"};
92-
Configurable<std::string> irSource{"irSource", "ZNC hadronic", "Estimator of the interaction rate (Recommended: pp --> T0VTX, Pb-Pb --> ZNC hadronic)"};
9392

9493
HfEventSelection hfEvSel; // event selection and monitoring
9594
o2::vertexing::DCAFitterN<2> df; // 2-prong vertex fitter
@@ -384,7 +383,7 @@ struct HfCandidateCreatorCascade {
384383
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
385384
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::None, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
386385
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
387-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
386+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
388387
/// monitor the satisfied event selections
389388
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
390389

@@ -403,7 +402,7 @@ struct HfCandidateCreatorCascade {
403402
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
404403
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0C, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
405404
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
406-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
405+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
407406
/// monitor the satisfied event selections
408407
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
409408

@@ -422,7 +421,7 @@ struct HfCandidateCreatorCascade {
422421
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
423422
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0M, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
424423
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
425-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
424+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
426425
/// monitor the satisfied event selections
427426
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
428427

PWGHF/TableProducer/candidateCreatorDstar.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ struct HfCandidateCreatorDstar {
9595
Configurable<bool> isRun2{"isRun2", false, "enable Run 2 or Run 3 GRP objects for magnetic field"};
9696
Configurable<std::string> ccdbPathGrp{"ccdbPathGrp", "GLO/GRP/GRP", "Path of the grp file (Run 2)"};
9797
Configurable<std::string> ccdbPathGrpMag{"ccdbPathGrpMag", "GLO/Config/GRPMagField", "CCDB path of the GRPMagField object (Run 3)"};
98-
Configurable<std::string> irSource{"irSource", "ZNC hadronic", "Estimator of the interaction rate (Recommended: pp --> T0VTX, Pb-Pb --> ZNC hadronic)"};
9998

10099
// vertexing
101100
Configurable<bool> propagateToPCA{"propagateToPCA", true, "create tracks version propagated to PCA"};
@@ -504,7 +503,7 @@ struct HfCandidateCreatorDstar {
504503
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
505504
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::None, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
506505
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
507-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
506+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
508507
/// monitor the satisfied event selections
509508
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
510509

@@ -523,7 +522,7 @@ struct HfCandidateCreatorDstar {
523522
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
524523
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0C, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
525524
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
526-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
525+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
527526
/// monitor the satisfied event selections
528527
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
529528

@@ -542,7 +541,7 @@ struct HfCandidateCreatorDstar {
542541
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
543542
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0M, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
544543
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
545-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
544+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
546545
/// monitor the satisfied event selections
547546
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
548547

PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ struct HfCandidateCreatorXic0Omegac0 {
128128
Configurable<std::string> ccdbPathLut{"ccdbPathLut", "GLO/Param/MatLUT", "Path for LUT parametrization"};
129129
Configurable<std::string> ccdbPathGrp{"ccdbPathGrp", "GLO/GRP/GRP", "Path of the grp file (Run 2)"};
130130
Configurable<std::string> ccdbPathGrpMag{"ccdbPathGrpMag", "GLO/Config/GRPMagField", "CCDB path of the GRPMagField object (Run 3)"};
131-
Configurable<std::string> irSource{"irSource", "ZNC hadronic", "Estimator of the interaction rate (Recommended: pp --> T0VTX, Pb-Pb --> ZNC hadronic)"};
132131

133132
// KFParticle process setting
134133
// V0 cuts
@@ -2239,7 +2238,7 @@ struct HfCandidateCreatorXic0Omegac0 {
22392238
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
22402239
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::None, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
22412240
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
2242-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
2241+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
22432242
/// monitor the satisfied event selections
22442243
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
22452244

@@ -2258,7 +2257,7 @@ struct HfCandidateCreatorXic0Omegac0 {
22582257
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
22592258
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0C, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
22602259
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
2261-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
2260+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
22622261
/// monitor the satisfied event selections
22632262
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
22642263

@@ -2277,7 +2276,7 @@ struct HfCandidateCreatorXic0Omegac0 {
22772276
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
22782277
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0M, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
22792278
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
2280-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
2279+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
22812280
/// monitor the satisfied event selections
22822281
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
22832282

PWGHF/TableProducer/candidateCreatorXicToXiPiPi.cxx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ struct HfCandidateCreatorXicToXiPiPi {
9494
Configurable<std::string> ccdbPathLut{"ccdbPathLut", "GLO/Param/MatLUT", "Path for LUT parametrization"};
9595
Configurable<std::string> ccdbPathGrp{"ccdbPathGrp", "GLO/GRP/GRP", "Path of the grp file (Run 2)"};
9696
Configurable<std::string> ccdbPathGrpMag{"ccdbPathGrpMag", "GLO/Config/GRPMagField", "CCDB path of the GRPMagField object (Run 3)"};
97-
Configurable<std::string> irSource{"irSource", "ZNC hadronic", "Estimator of the interaction rate (Recommended: pp --> T0VTX, Pb-Pb --> ZNC hadronic)"};
9897
// cascade preselections
9998
Configurable<bool> doCascadePreselection{"doCascadePreselection", true, "Use invariant mass and dcaXY cuts to preselect cascade candidates"};
10099
Configurable<double> massToleranceCascade{"massToleranceCascade", 0.01, "Invariant mass tolerance for cascade"};
@@ -806,7 +805,7 @@ struct HfCandidateCreatorXicToXiPiPi {
806805
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
807806
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::None, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
808807
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
809-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
808+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
810809
/// monitor the satisfied event selections
811810
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
812811

@@ -824,7 +823,7 @@ struct HfCandidateCreatorXicToXiPiPi {
824823
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
825824
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0C, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
826825
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
827-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
826+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
828827
/// monitor the satisfied event selections
829828
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
830829

@@ -842,7 +841,7 @@ struct HfCandidateCreatorXicToXiPiPi {
842841
const auto occupancy = o2::hf_occupancy::getOccupancyColl(collision, hfEvSel.occEstimator);
843842
const auto rejectionMask = hfEvSel.getHfCollisionRejectionMask<true, CentralityEstimator::FT0M, aod::BCsWithTimestamps>(collision, centrality, ccdb, registry);
844843
const auto bc = collision.template foundBC_as<aod::BCsWithTimestamps>();
845-
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), irSource, true); // Hz
844+
const auto ir = mRateFetcher.fetch(ccdb.service, bc.timestamp(), bc.runNumber(), hfEvSel.irSource, true); // Hz
846845
/// monitor the satisfied event selections
847846
hfEvSel.fillHistograms(collision, rejectionMask, centrality, occupancy, ir);
848847

0 commit comments

Comments
 (0)