Skip to content

Commit a3cf0f8

Browse files
author
Ida Torkjellsdatter Storehaug
committed
Debugging messages removed from tableReader_withAssoc.cxx
1 parent a455cf5 commit a3cf0f8

File tree

1 file changed

+0
-23
lines changed

1 file changed

+0
-23
lines changed

PWGDQ/Tasks/tableReader_withAssoc.cxx

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,6 @@ struct AnalysisEventSelection {
306306

307307
void init(o2::framework::InitContext& context)
308308
{
309-
LOG(info) << "Starting initialization of AnalysisEventSelection (idstoreh)";
310309

311310
bool isAnyProcessEnabled = context.mOptions.get<bool>("processSkimmed") || context.mOptions.get<bool>("processSkimmedWithZdc") || context.mOptions.get<bool>("processSkimmedWithMultExtra") || context.mOptions.get<bool>("processSkimmedWithMultExtraZdc") || context.mOptions.get<bool>("processSkimmedWithQvectorCentr");
312311
bool isDummyEnabled = context.mOptions.get<bool>("processDummy");
@@ -372,7 +371,6 @@ struct AnalysisEventSelection {
372371
fCCDB->setLocalObjectValidityChecking();
373372
fCCDB->setCreatedNotAfter(fConfigNoLaterThan.value);
374373
fCCDBApi.init(fConfigCcdbUrl.value);
375-
LOG(info) << "Initialization of AnalysisEventSelection finished (idstoreh)";
376374
}
377375

378376
template <uint32_t TEventFillMap, typename TEvents>
@@ -601,7 +599,6 @@ struct AnalysisTrackSelection {
601599

602600
void init(o2::framework::InitContext& context)
603601
{
604-
LOG(info) << "Starting initialization of AnalysisTrackSelection (idstoreh)";
605602
if (context.mOptions.get<bool>("processDummy")) {
606603
return;
607604
}
@@ -651,7 +648,6 @@ struct AnalysisTrackSelection {
651648
fCCDB->setLocalObjectValidityChecking();
652649
fCCDB->setCreatedNotAfter(fConfigNoLaterThan.value);
653650
fCCDBApi.init(fConfigCcdbUrl.value);
654-
LOG(info) << "Initialization of AnalysisTrackSelection finished (idstoreh)";
655651
}
656652

657653
template <uint32_t TEventFillMap, uint32_t TTrackFillMap, typename TEvents, typename TTracks>
@@ -854,7 +850,6 @@ struct AnalysisMuonSelection {
854850

855851
void init(o2::framework::InitContext& context)
856852
{
857-
LOG(info) << "Starting initialization of AnalysisMuonSelection (idstoreh)";
858853
if (context.mOptions.get<bool>("processDummy")) {
859854
return;
860855
}
@@ -906,7 +901,6 @@ struct AnalysisMuonSelection {
906901
if (!o2::base::GeometryManager::isGeometryLoaded()) {
907902
fCCDB->get<TGeoManager>(fConfigGeoPath);
908903
}
909-
LOG(info) << "Initialization of AnalysisMuonSelection finished (idstoreh)";
910904
}
911905

912906
template <uint32_t TEventFillMap, uint32_t TMuonFillMap, typename TEvents, typename TMuons>
@@ -1057,7 +1051,6 @@ struct AnalysisPrefilterSelection {
10571051

10581052
void init(o2::framework::InitContext& context)
10591053
{
1060-
LOG(info) << "Starting initialization of AnalysisPrefilterSelection (idstoreh)";
10611054
if (context.mOptions.get<bool>("processDummy")) {
10621055
return;
10631056
}
@@ -1131,7 +1124,6 @@ struct AnalysisPrefilterSelection {
11311124
VarManager::SetUseVars(AnalysisCut::fgUsedVars); // provide the list of required variables so that VarManager knows what to fill
11321125
VarManager::SetupTwoProngDCAFitter(5.0f, true, 200.0f, 4.0f, 1.0e-3f, 0.9f, true); // TODO: get these parameters from Configurables
11331126
// VarManager::SetupTwoProngFwdDCAFitter(5.0f, true, 200.0f, 1.0e-3f, 0.9f, true);
1134-
LOG(info) << "Initialization of AnalysisPrefilterSelection finished (idstoreh)";
11351127
}
11361128

11371129
template <uint32_t TTrackFillMap, typename TTracks>
@@ -1324,7 +1316,6 @@ struct AnalysisSameEventPairing {
13241316

13251317
void init(o2::framework::InitContext& context)
13261318
{
1327-
LOG(info) << "Starting initialization of AnalysisSameEventPairing (idstoreh)";
13281319
fEnableBarrelHistos = context.mOptions.get<bool>("processAllSkimmed") || context.mOptions.get<bool>("processBarrelOnlySkimmed") || context.mOptions.get<bool>("processBarrelOnlyWithCollSkimmed") || context.mOptions.get<bool>("processBarrelOnlySkimmedNoCov") || context.mOptions.get<bool>("processBarrelOnlySkimmedNoCovWithMultExtra") || context.mOptions.get<bool>("processBarrelOnlyWithQvectorCentrSkimmedNoCov");
13291320
fEnableBarrelMixingHistos = context.mOptions.get<bool>("processMixingAllSkimmed") || context.mOptions.get<bool>("processMixingBarrelSkimmed") || context.mOptions.get<bool>("processMixingBarrelSkimmedFlow") || context.mOptions.get<bool>("processMixingBarrelWithQvectorCentrSkimmedNoCov");
13301321
fEnableMuonHistos = context.mOptions.get<bool>("processAllSkimmed") || context.mOptions.get<bool>("processMuonOnlySkimmed") || context.mOptions.get<bool>("processMuonOnlySkimmedMultExtra") || context.mOptions.get<bool>("processMixingMuonSkimmed");
@@ -1470,7 +1461,6 @@ struct AnalysisSameEventPairing {
14701461
}
14711462
}
14721463
}
1473-
LOG(info) << "Initialization of AnalysisSameEventPairing 1 (idstoreh)";
14741464

14751465
// get the muon track selection cuts
14761466
getTaskOptionValue<string>(context, "analysis-muon-selection", "cfgMuonCuts", tempCuts, false);
@@ -1552,8 +1542,6 @@ struct AnalysisSameEventPairing {
15521542
}
15531543
}
15541544

1555-
LOG(info) << "Initialization of AnalysisSameEventPairing 2 (idstoreh)";
1556-
15571545
fCurrentRun = 0;
15581546

15591547
fCCDB->setURL(fConfigCCDB.url.value);
@@ -1615,7 +1603,6 @@ struct AnalysisSameEventPairing {
16151603
VarManager::SetUseVars(fHistMan->GetUsedVars()); // provide the list of required variables so that VarManager knows what to fill
16161604
fOutputList.setObject(fHistMan->GetMainHistogramList());
16171605
}
1618-
LOG(info) << "Finished initialization of AnalysisSameEventPairing (idstoreh)";
16191606
}
16201607

16211608
void initParamsFromCCDB(uint64_t timestamp, int runNumber, bool withTwoProngFitter = true)
@@ -2441,7 +2428,6 @@ struct AnalysisAsymmetricPairing {
24412428

24422429
void init(o2::framework::InitContext& context)
24432430
{
2444-
LOG(info) << "Initialization of AnalysisAsymmetricPairing started (idstoreh)";
24452431
if (context.mOptions.get<bool>("processDummy")) {
24462432
return;
24472433
}
@@ -2670,7 +2656,6 @@ struct AnalysisAsymmetricPairing {
26702656
dqhistograms::AddHistogramsFromJSON(fHistMan, fConfigAddJSONHistograms.value.c_str()); // ad-hoc histograms via JSON
26712657
VarManager::SetUseVars(fHistMan->GetUsedVars()); // provide the list of required variables so that VarManager knows what to fill
26722658
fOutputList.setObject(fHistMan->GetMainHistogramList());
2673-
LOG(info) << "Initialization of AnalysisAsymmetricPairing finished (idstoreh)";
26742659
}
26752660

26762661
void initParamsFromCCDB(uint64_t timestamp, bool isTriplets)
@@ -3153,7 +3138,6 @@ struct AnalysisDileptonTrack {
31533138

31543139
void init(o2::framework::InitContext& context)
31553140
{
3156-
LOG(info) << "Initialization of AnalysisDileptonTrack started (idstoreh)";
31573141
bool isBarrel = context.mOptions.get<bool>("processBarrelSkimmed");
31583142
bool isBarrelME = context.mOptions.get<bool>("processBarrelMixedEvent");
31593143
bool isBarrelAsymmetric = context.mOptions.get<bool>("processDstarToD0Pi");
@@ -3179,7 +3163,6 @@ struct AnalysisDileptonTrack {
31793163

31803164
// For each track/muon selection used to produce dileptons, create a separate histogram directory using the
31813165
// name of the track/muon cut.
3182-
LOG(info) << "Initialization of AnalysisDileptonTrack 1 (idstoreh)";
31833166
if (isBarrel || isMuon || isBarrelAsymmetric) {
31843167
// Get the list of single track and muon cuts computed in the dedicated tasks upstream
31853168
// We need this to know the order in which they were computed, and also to make sure that in this task we do not ask
@@ -3218,7 +3201,6 @@ struct AnalysisDileptonTrack {
32183201
for (int icut = 0; icut < cfgTrackSelection_objArrayTrackCuts->GetEntries(); icut++) {
32193202
fTrackCutNames.push_back(cfgTrackSelection_objArrayTrackCuts->At(icut)->GetName());
32203203
}
3221-
LOG(info) << "Initialization of AnalysisDileptonTrack 2 (idstoreh)";
32223204
// get the list of associated track cuts to be combined with the dileptons and
32233205
// check that these were computed upstream and create a bit mask
32243206
TObjArray* cfgDileptonTrack_objArrayTrackCuts = nullptr;
@@ -3258,7 +3240,6 @@ struct AnalysisDileptonTrack {
32583240
getTaskOptionValue<string>(context, "analysis-asymmetric-pairing", "cfgPairCuts", cfgPairing_PairCuts, false);
32593241
getTaskOptionValue<string>(context, "analysis-asymmetric-pairing", "cfgCommonTrackCuts", cfgPairing_CommonTrackCuts, false);
32603242
}
3261-
LOG(info) << "Initialization of AnalysisDileptonTrack 3 (idstoreh)";
32623243
if (cfgPairing_TrackCuts.empty()) {
32633244
LOG(fatal) << "There are no dilepton cuts specified in the upstream in the same-event-pairing or asymmetric-pairing";
32643245
}
@@ -3277,7 +3258,6 @@ struct AnalysisDileptonTrack {
32773258
}
32783259
}
32793260
} // end if (common cuts)
3280-
LOG(info) << "Initialization of AnalysisDileptonTrack 4 (idstoreh)";
32813261
// Get also the pair cuts specified via the JSON parameters
32823262
if (isBarrelAsymmetric) {
32833263
getTaskOptionValue<string>(context, "analysis-asymmetric-pairing", "cfgPairCutsJSON", cfgPairing_PairCutsJSON, false);
@@ -3304,7 +3284,6 @@ struct AnalysisDileptonTrack {
33043284
} else {
33053285
fNLegCuts = fNCuts;
33063286
}
3307-
LOG(info) << "Initialization of AnalysisDileptonTrack 5 (idstoreh)";
33083287
// loop over single lepton cuts
33093288
for (int icut = 0; icut < fNLegCuts; ++icut) {
33103289

@@ -3378,8 +3357,6 @@ struct AnalysisDileptonTrack {
33783357
LOG(info) << "Loading geometry from CCDB in dilepton-track task";
33793358
fCCDB->get<TGeoManager>(fConfigGeoPath);
33803359
}
3381-
3382-
LOG(info) << "Initialization of AnalysisDileptonTrack finished (idstoreh)";
33833360
}
33843361

33853362
// init parameters from CCDB

0 commit comments

Comments
 (0)