Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PWGHF/D2H/Tasks/taskCharmResoToDTrkReduced.cxx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.

Check failure on line 1 in PWGHF/D2H/Tasks/taskCharmResoToDTrkReduced.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[pwghf/struct-member-order]

Declare struct members in the conventional order. See the PWGHF coding guidelines.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
Expand Down Expand Up @@ -137,7 +137,7 @@
Produces<aod::HfCandDTrkLites> hfCandResoLite;
Produces<aod::HfGenResoLites> hfGenResoLite;

using ReducedReso2PrTrk = soa::Join<aod::HfCandCharmReso, aod::Hf2PrTrkIds>;

Check failure on line 140 in PWGHF/D2H/Tasks/taskCharmResoToDTrkReduced.cxx

View workflow job for this annotation

GitHub Actions / O2 linter

[pwghf/struct-member-order]

HfTaskCharmResoToDTrkReduced: using appears too early (before end of Configurable<).
using ReducedReso2PrTrkMC = soa::Join<aod::HfCandCharmReso, aod::Hf2PrTrkIds, aod::HfMcRecRedResos>;

Configurable<bool> doWrongSign{"doWrongSign", false, "Flag to enable wrong sign candidates"};
Expand All @@ -155,7 +155,7 @@

using ReducedReso2PrTrk = soa::Join<aod::HfCandCharmReso, aod::Hf2PrTrkIds>;
using ReducedReso2PrTrkMC = soa::Join<aod::HfCandCharmReso, aod::Hf2PrTrkIds, aod::HfMcRecRedResos>;

// Configurables axis for histos
ConfigurableAxis axisPt{"axisPt", {VARIABLE_WIDTH, 0., 1.f, 2.f, 3.f, 4.f, 5.f, 6.f, 8.f, 12.f, 24.f, 50.f}, "#it{p}_{T} (GeV/#it{c})"};
ConfigurableAxis axisPtProng0{"axisPtProng0", {VARIABLE_WIDTH, 0., 1.f, 2.f, 3.f, 4.f, 5.f, 6.f, 8.f, 12.f, 24.f, 50.f}, "prong0 bach. #it{p}_{T} (GeV/#it{c})"};
Expand Down
4 changes: 2 additions & 2 deletions PWGHF/D2H/Tasks/taskCharmResoToDV0Reduced.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ enum DecayChannel : uint8_t {
struct HfTaskCharmResoToDV0Reduced {
Produces<aod::HfCandDV0Lites> hfCandResoLite;
Produces<aod::HfGenResoLites> hfGenResoLite;

Configurable<bool> doWrongSign{"doWrongSign", false, "Flag to enable wrong sign candidates"};
Configurable<float> ptMinReso{"ptMinReso", -1, "Discard events with smaller pT"};
Configurable<bool> fillTrees{"fillTrees", true, "Fill output Trees"};
Expand All @@ -159,7 +159,7 @@ struct HfTaskCharmResoToDV0Reduced {
Configurable<float> ptTrackMin{"ptTrackMin", 0.1, "min. track transverse momentum for acceptance calculation"};
Configurable<float> massResoMin{"massResoMin", 0.49, "min. mass of resonance"};
Configurable<float> massResoMax{"massResoMax", 1.29, "max. mass of resonance"};

using ReducedReso3PrV0 = soa::Join<aod::HfCandCharmReso, aod::Hf3PrV0Ids>;
using ReducedResoDstarV0 = soa::Join<aod::HfCandCharmReso, aod::HfDstarV0Ids>;
using ReducedReso2PrV0 = soa::Join<aod::HfCandCharmReso, aod::Hf2PrV0Ids>;
Expand Down
Loading