Skip to content

Commit c3e7170

Browse files
authored
Merge pull request #46 from alibuild/alibot-cleanup-11447
Please consider the following formatting changes to #11447
2 parents f3f4cb0 + 31e459a commit c3e7170

File tree

2 files changed

+466
-468
lines changed

2 files changed

+466
-468
lines changed

PWGHF/D2H/DataModel/ReducedDataModel.h

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ DECLARE_SOA_DYNAMIC_COLUMN(PVector, pVector,
889889
[](float pxProng0, float pyProng0, float pzProng0, float pxProng1, float pyProng1, float pzProng1) -> std::array<float, 3> { return std::array{pxProng0 + pxProng1, pyProng0 + pyProng1, pzProng0 + pzProng1}; });
890890
DECLARE_SOA_DYNAMIC_COLUMN(Pt, pt, //!
891891
[](float pxProng0, float pxProng1, float pyProng0, float pyProng1) -> float { return RecoDecay::pt((1.f * pxProng0 + 1.f * pxProng1), (1.f * pyProng0 + 1.f * pyProng1)); });
892-
} // namespace hf_cand_2_prong
892+
} // namespace hf_reso_2_prong
893893

894894
namespace hf_reso_v0
895895
{
@@ -1030,10 +1030,9 @@ DECLARE_SOA_TABLE(HfRed2PrNoTrks, "AOD", "HFRED2PRNOTRK", //! Table with 2 prong
10301030
hf_reso_2_prong::Pt<hf_cand::PxProng0, hf_cand::PxProng1, hf_cand::PyProng0, hf_cand::PyProng1>,
10311031
// InvMasses
10321032
hf_cand_dstar::InvMassD0<hf_cand::PxProng0, hf_cand::PyProng0, hf_cand::PzProng0, hf_cand::PxProng1, hf_cand::PyProng1, hf_cand::PzProng1>,
1033-
hf_cand_dstar::InvMassD0Bar<hf_cand::PxProng0, hf_cand::PyProng0, hf_cand::PzProng0, hf_cand::PxProng1, hf_cand::PyProng1, hf_cand::PzProng1>
1034-
);
1033+
hf_cand_dstar::InvMassD0Bar<hf_cand::PxProng0, hf_cand::PyProng0, hf_cand::PzProng0, hf_cand::PxProng1, hf_cand::PyProng1, hf_cand::PzProng1>);
10351034

1036-
namespace hf_reso_cand_reduced
1035+
namespace hf_reso_cand_reduced
10371036
{
10381037
DECLARE_SOA_COLUMN(InvMass, invMass, float); //! Invariant mass in GeV/c2
10391038
DECLARE_SOA_COLUMN(InvMassProng0, invMassProng0, float); //! Invariant Mass of D daughter in GeV/c
@@ -1051,7 +1050,7 @@ DECLARE_SOA_COLUMN(FlagMcMatchGen, flagMcMatchGen, int8_t); // fla
10511050
DECLARE_SOA_COLUMN(DebugMcRec, debugMcRec, int8_t); // debug flag for mis-association at reconstruction level
10521051
DECLARE_SOA_COLUMN(Origin, origin, int8_t); // Flag for origin of MC particle 1=promt, 2=FD
10531052
DECLARE_SOA_COLUMN(SignD0, signD0, int8_t); // Sign of the D0 in the channels with D* -> D0 pi, needed in case of non-matched D*
1054-
DECLARE_SOA_COLUMN(InvMassGen, invMassGen, float); //! Invariant mass at generation level in GeV/c2
1053+
DECLARE_SOA_COLUMN(InvMassGen, invMassGen, float); //! Invariant mass at generation level in GeV/c2
10551054
DECLARE_SOA_DYNAMIC_COLUMN(Pt, pt, //!
10561055
[](float pxProng0, float pxProng1, float pyProng0, float pyProng1) -> float { return RecoDecay::pt((1.f * pxProng0 + 1.f * pxProng1), (1.f * pyProng0 + 1.f * pyProng1)); });
10571056
DECLARE_SOA_DYNAMIC_COLUMN(PtProng0, ptProng0, //!

0 commit comments

Comments
 (0)