Skip to content

Commit ffca9fb

Browse files
committed
Please consider the following formatting changes
1 parent 11ebc2f commit ffca9fb

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

PWGHF/D2H/DataModel/ReducedDataModel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -880,7 +880,7 @@ DECLARE_SOA_DYNAMIC_COLUMN(PVector, pVector,
880880
namespace hf_reso_2_prong
881881
{
882882
DECLARE_SOA_COLUMN(SelFlagD0, selFlagD0, uint8_t); //! Integer with D0 selection flag: 1 = selected as D0, 2 = selected as D0bar, 3 = selected as D0 and D0bar
883-
DECLARE_SOA_DYNAMIC_COLUMN(Px, px, //!
883+
DECLARE_SOA_DYNAMIC_COLUMN(Px, px, //!
884884
[](float pxProng0, float pxProng1) -> float { return 1.f * pxProng0 + 1.f * pxProng1; });
885885
DECLARE_SOA_DYNAMIC_COLUMN(Py, py, //!
886886
[](float pyProng0, float pyProng1) -> float { return 1.f * pyProng0 + 1.f * pyProng1; });

PWGHF/D2H/TableProducer/dataCreatorCharmResoReduced.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ enum PairingType : uint8_t {
8484
V0AndTrack
8585
};
8686

87-
enum D0Sel: uint8_t {
87+
enum D0Sel : uint8_t {
8888
selectedD0 = 0,
8989
selectedD0Bar
9090
};
@@ -279,7 +279,7 @@ struct HfDataCreatorCharmResoReduced {
279279
const AxisSpec axisDeDx{500, 0.f, 1000.f, ""};
280280
const AxisSpec axisMassD0{200, 1.7f, 2.1f, "inv. mass (GeV/#it{c}^{2})"};
281281
const AxisSpec axisMassDplus{200, 1.7f, 2.1f, "inv. mass (GeV/#it{c}^{2})"};
282-
const AxisSpec axisMassDstar{200, 0.139f, 0.179f, "delta inv. mass (GeV/#it{c}^{2})"}; //o2-linter: disable=pdg/explicit-mass (false positive)
282+
const AxisSpec axisMassDstar{200, 0.139f, 0.179f, "delta inv. mass (GeV/#it{c}^{2})"}; // o2-linter: disable=pdg/explicit-mass (false positive)
283283
const AxisSpec axisMassLambda{100, 1.05f, 1.35f, "inv. mass (GeV/#it{c}^{2})"};
284284
const AxisSpec axisMassKzero{100, 0.35f, 0.65f, "inv. mass (GeV/#it{c}^{2})"};
285285
const AxisSpec axisDeltaMassToK{500, 0.49, 1.49, "inv. mass (GeV/#it{c}^{2})"};
@@ -1271,10 +1271,10 @@ struct HfDataCreatorCharmResoReduced {
12711271
}
12721272
} else if constexpr (dType == DType::D0) {
12731273
uint8_t selFlagD0 = {BIT(D0Sel::selectedD0) | BIT(D0Sel::selectedD0Bar)};
1274-
if (candD.isSelD0() < cfgDmesCuts.selectionFlagD0){
1274+
if (candD.isSelD0() < cfgDmesCuts.selectionFlagD0) {
12751275
CLRBIT(selFlagD0, D0Sel::selectedD0);
12761276
}
1277-
if (candD.isSelD0bar() < cfgDmesCuts.selectionFlagD0Bar){
1277+
if (candD.isSelD0bar() < cfgDmesCuts.selectionFlagD0Bar) {
12781278
CLRBIT(selFlagD0, D0Sel::selectedD0Bar);
12791279
}
12801280
hfCandD2Pr(prongIdsD[0], prongIdsD[1],

0 commit comments

Comments
 (0)