Skip to content

Commit db1bb86

Browse files
committed
Please consider the following formatting changes
1 parent f2003e7 commit db1bb86

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

PWGLF/TableProducer/Strangeness/sigma0builder.cxx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,11 +51,11 @@
5151
#include <TPDGCode.h>
5252
#include <TProfile.h>
5353

54-
#include <vector>
5554
#include <array>
5655
#include <cmath>
5756
#include <cstdlib>
5857
#include <string>
58+
#include <vector>
5959

6060
using namespace o2;
6161
using namespace o2::framework;
@@ -1962,4 +1962,3 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
19621962
{
19631963
return WorkflowSpec{adaptAnalysisTask<sigma0builder>(cfgc)};
19641964
}
1965-

PWGLF/Tasks/Strangeness/sigmaanalysis.cxx

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,12 +49,12 @@
4949
#include <TPDGCode.h>
5050
#include <TProfile.h>
5151

52-
#include <vector>
53-
#include <unordered_map>
5452
#include <array>
5553
#include <cmath>
5654
#include <cstdlib>
5755
#include <string>
56+
#include <unordered_map>
57+
#include <vector>
5858

5959
using namespace o2;
6060
using namespace o2::framework;
@@ -132,7 +132,6 @@ struct sigmaanalysis {
132132
Configurable<float> mc_rapidityMin{"mc_rapidityMin", -0.5, "Min generated particle rapidity"};
133133
Configurable<float> mc_rapidityMax{"mc_rapidityMax", 0.5, "Max generated particle rapidity"};
134134
} genSelections;
135-
136135

137136
// QA
138137
Configurable<bool> fdoSigma0QA{"doSigma0QA", false, "if true, perform Sigma0 QA analysis. Only works with MC."};
@@ -552,8 +551,7 @@ struct sigmaanalysis {
552551
histos.add("Gen/h2dGenAntiSigma0VsMultMC_RecoedEvt", "h2dGenAntiSigma0VsMultMC_RecoedEvt", kTH2D, {axisNch, axisPt});
553552
histos.add("Gen/h2dGenSigma0VsMultMC", "h2dGenSigma0VsMultMC", kTH2D, {axisNch, axisPt});
554553
histos.add("Gen/h2dGenAntiSigma0VsMultMC", "h2dGenAntiSigma0VsMultMC", kTH2D, {axisNch, axisPt});
555-
556-
}
554+
}
557555
if (doprocessPi0GeneratedRun3) { // Pi0 specific
558556
histos.add("Gen/h2dGenPi0VsMultMC_RecoedEvt", "h2dGenPi0VsMultMC_RecoedEvt", kTH2D, {axisNch, axisPt});
559557
histos.add("Gen/h2dGenPi0", "h2dGenPi0", kTH2D, {axisCentrality, axisPt});
@@ -1267,7 +1265,7 @@ struct sigmaanalysis {
12671265
auto sigma0mc = fullSigma0s.rawIteratorAt(sigma0Index[mcid]);
12681266
histos.fill(HIST("Sigma0QA/hDuplicates"), NDuplicates); // how many times a mc sigma0 was reconstructed
12691267

1270-
if (sigma0mc.isSigma0())
1268+
if (sigma0mc.isSigma0())
12711269
histos.fill(HIST("Sigma0QA/hSigma0Duplicates"), NDuplicates); // how many times a mc sigma0 was reconstructed
12721270

12731271
if (sigma0mc.isAntiSigma0())
@@ -1733,4 +1731,3 @@ WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
17331731
{
17341732
return WorkflowSpec{adaptAnalysisTask<sigmaanalysis>(cfgc)};
17351733
}
1736-

0 commit comments

Comments
 (0)