Skip to content

Commit b9fc303

Browse files
committed
Please consider the following formatting changes
1 parent 6c6e15b commit b9fc303

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

PWGHF/Tasks/taskCharmHadImpactPar.cxx

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ namespace o2::aod
3838
{
3939
namespace hf_charm_cand_lite
4040
{
41-
DECLARE_SOA_COLUMN(M, m, float); //! Invariant mass of candidate (GeV/c2)
42-
DECLARE_SOA_COLUMN(Pt, pt, float); //! Transverse momentum of candidate (GeV/c)
43-
DECLARE_SOA_COLUMN(Y, y, float); //! Rapidity of candidate
44-
DECLARE_SOA_COLUMN(Eta, eta, float); //! Pseudorapidity of candidate
45-
DECLARE_SOA_COLUMN(Phi, phi, float); //! Azimuth angle of candidate
46-
DECLARE_SOA_COLUMN(MlScoreBkg, mlScoreBkg, float); //! ML score for background class
47-
DECLARE_SOA_COLUMN(MlScorePrompt, mlScorePrompt, float); //! ML Prompt score for prompt class
48-
DECLARE_SOA_COLUMN(MlScoreNonPrompt, mlScoreNonPrompt, float); //! ML Non Prompt score for non prompt class
49-
}
41+
DECLARE_SOA_COLUMN(M, m, float); //! Invariant mass of candidate (GeV/c2)
42+
DECLARE_SOA_COLUMN(Pt, pt, float); //! Transverse momentum of candidate (GeV/c)
43+
DECLARE_SOA_COLUMN(Y, y, float); //! Rapidity of candidate
44+
DECLARE_SOA_COLUMN(Eta, eta, float); //! Pseudorapidity of candidate
45+
DECLARE_SOA_COLUMN(Phi, phi, float); //! Azimuth angle of candidate
46+
DECLARE_SOA_COLUMN(MlScoreBkg, mlScoreBkg, float); //! ML score for background class
47+
DECLARE_SOA_COLUMN(MlScorePrompt, mlScorePrompt, float); //! ML Prompt score for prompt class
48+
DECLARE_SOA_COLUMN(MlScoreNonPrompt, mlScoreNonPrompt, float); //! ML Non Prompt score for non prompt class
49+
} // namespace hf_charm_cand_lite
5050

5151
DECLARE_SOA_TABLE(HfCharmCandLites, "AOD", "HFCHARMCANDLITE", //! Table with some B+ properties
5252
hf_charm_cand_lite::M,
@@ -57,7 +57,7 @@ DECLARE_SOA_TABLE(HfCharmCandLites, "AOD", "HFCHARMCANDLITE", //! Table with som
5757
hf_charm_cand_lite::MlScoreBkg,
5858
hf_charm_cand_lite::MlScorePrompt,
5959
hf_charm_cand_lite::MlScoreNonPrompt);
60-
}
60+
} // namespace o2::aod
6161

6262
struct HfTaskCharmHadImpactPar {
6363
Produces<aod::HfCharmCandLites> hfCharmCandLite;
@@ -66,7 +66,7 @@ struct HfTaskCharmHadImpactPar {
6666
Configurable<int> fillLightTreeCandidate{"fillLightTreeCandidate", 0, "Flag to store charm hadron features"};
6767
ConfigurableAxis axisPt{"axisPt", {0.f, 1.f, 2.f, 3.f, 4.f, 5.f, 6.f, 8.f, 10.f, 12.f, 16.f, 24.f, 36.f, 50.f}, "axis for pT of charm hadron"};
6868
ConfigurableAxis axisMass{"axisMass", {250, 1.65f, 2.15f}, "axis for mass of charm hadron"};
69-
ConfigurableAxis axisPhi{"axisPhi", {100, 0.f, 2*PI}, "axis for azimuthal angle of charm hadron"};
69+
ConfigurableAxis axisPhi{"axisPhi", {100, 0.f, 2 * PI}, "axis for azimuthal angle of charm hadron"};
7070
ConfigurableAxis axisEta{"axisEta", {100, -2.f, 2.f}, "axis for pseudorapidity of charm hadron"};
7171
ConfigurableAxis axisImpPar{"axisImpPar", {2000, -500.f, 500.f}, "axis for impact-parameter of charm hadron"};
7272
ConfigurableAxis axisMlScore0{"axisMlScore0", {100, 0.f, 1.f}, "axis for ML output score 0"};
@@ -186,15 +186,15 @@ struct HfTaskCharmHadImpactPar {
186186
}
187187
}
188188
hfCharmCandLite(
189-
// Charm candidate meson features
190-
invMass,
191-
candidate.pt(),
192-
yCand,
193-
candidate.eta(),
194-
candidate.phi(),
195-
outputMl[0],
196-
outputMl[1],
197-
outputMl[2]);
189+
// Charm candidate meson features
190+
invMass,
191+
candidate.pt(),
192+
yCand,
193+
candidate.eta(),
194+
candidate.phi(),
195+
outputMl[0],
196+
outputMl[1],
197+
outputMl[2]);
198198
}
199199

200200
/// \param candidates are reconstructed candidates
@@ -203,7 +203,7 @@ struct HfTaskCharmHadImpactPar {
203203
{
204204
for (auto const& candidate : candidates) {
205205
fillSparse<channel, withMl>(candidate);
206-
if(fillLightTreeCandidate){
206+
if (fillLightTreeCandidate) {
207207
fillTree<channel, withMl>(candidate);
208208
}
209209
}

0 commit comments

Comments
 (0)