Skip to content

Commit 780f7f1

Browse files
committed
Please consider the following formatting changes
1 parent 73082cf commit 780f7f1

File tree

1 file changed

+13
-12
lines changed

1 file changed

+13
-12
lines changed

DPG/Tasks/AOTTrack/qaMatchEff.cxx

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,27 @@
2121
//
2222

2323
#include "Common/CCDB/EventSelectionParams.h"
24+
#include "Common/Core/RecoDecay.h"
2425
#include "Common/Core/TrackSelection.h"
2526
#include "Common/Core/TrackSelectionDefaults.h"
2627
#include "Common/DataModel/Centrality.h"
2728
#include "Common/DataModel/EventSelection.h"
29+
#include "Common/DataModel/PIDResponse.h"
2830
#include "Common/DataModel/PIDResponseTOF.h"
2931
#include "Common/DataModel/PIDResponseTPC.h"
3032
#include "Common/DataModel/TrackSelectionTables.h"
31-
#include "Common/DataModel/PIDResponse.h"
32-
#include "CommonConstants/MathConstants.h"
33+
3334
#include "CCDB/BasicCCDBManager.h"
34-
#include "Common/Core/RecoDecay.h"
35+
#include "CommonConstants/MathConstants.h"
3536
//
3637
#include "Framework/AnalysisTask.h"
3738
#include "Framework/RunningWorkflowInfo.h"
3839
#include "Framework/runDataProcessing.h"
3940
//
41+
#include <cmath>
42+
#include <set>
4043
#include <string>
4144
#include <vector>
42-
#include <set>
43-
#include <cmath>
4445

4546
//
4647
namespace extConfPar
@@ -149,21 +150,21 @@ struct qaMatchEff {
149150
// TRD presence
150151
Configurable<int> isTRDThere{"isTRDThere", 2, "Integer to turn the presence of TRD off, on, don't care (0,1,anything else)"};
151152
Configurable<int> isTOFThere{"isTOFThere", 2, "Integer to turn the presence of TOF off, on, don't care (0,1,anything else)"};
152-
153+
153154
Configurable<bool> isitMC{"isitMC", false, "Reading MC files, data if false"};
154155
Configurable<bool> doDebug{"doDebug", false, "Flag of debug information"};
155156
// Histogram configuration
156-
157+
157158
// histos bins
158159
Configurable<int> etaBins{"eta-bins", 40, "Number of eta bins"};
159160
Configurable<int> phiBins{"phi-bins", 18, "Number of phi bins"};
160161
Configurable<int> qoptBins{"qopt-bins", 500, "Number of Q/pt bins"};
161-
162+
162163
// special histo, few particles explicitly stored, then pdg>3000
163164
Configurable<int> pdgBins{"pdg-bins", 14, "Number of pdg values counted"};
164-
165+
165166
// histo axes
166-
167+
167168
ConfigurableAxis ptBins{"ptBins", {100, 0.f, 20.f}, "pT binning"};
168169
ConfigurableAxis XBins{"XBins", {400, -2.f, 2.f}, "X binning"};
169170
ConfigurableAxis ZBins{"ZBins", {400, -20.f, 20.f}, "Z binning"};
@@ -3361,7 +3362,7 @@ struct qaMatchEff {
33613362
if (doDebug)
33623363
LOGF(info, "Event selection not passed, skipping...");
33633364
return;
3364-
}
3365+
}
33653366
fillHistograms<true>(tracks, mcParticles, mcParticles); /// 3rd argument non-sense in this case
33663367
fillGeneralHistos<true>(collision);
33673368
}
@@ -3464,7 +3465,7 @@ struct qaMatchEff {
34643465
if (doDebug)
34653466
LOGF(info, "Event selection not passed, skipping...");
34663467
return;
3467-
}
3468+
}
34683469
fillHistograms<false>(tracks, tracks, tracks); // 2nd and 3rd arguments not used in this case
34693470
fillGeneralHistos<false>(collision);
34703471
}

0 commit comments

Comments
 (0)