Skip to content

Commit de68cae

Browse files
committed
Fix code check errors in HF tree creators
1 parent 26c07a1 commit de68cae

3 files changed

Lines changed: 2 additions & 5 deletions

File tree

PWGHF/TableProducer/treeCreatorD0ToKPi.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
#include "PWGHF/Core/HfHelper.h"
2222
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
2323
#include "PWGHF/DataModel/CandidateSelectionTables.h"
24-
#include "PWGHF/Utils/utilsAnalysis.h"
2524

2625
#include "Common/Core/RecoDecay.h"
2726

PWGHF/TableProducer/treeCreatorDplusToPiKPi.cxx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
#include "PWGHF/DataModel/AliasTables.h"
2323
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
2424
#include "PWGHF/DataModel/CandidateSelectionTables.h"
25-
#include "PWGHF/Utils/utilsAnalysis.h"
2625

2726
#include "Common/Core/RecoDecay.h"
2827
#include "Common/DataModel/Centrality.h"

PWGHF/TableProducer/treeCreatorDsToKKPi.cxx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
#include "PWGHF/DataModel/AliasTables.h"
2424
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
2525
#include "PWGHF/DataModel/CandidateSelectionTables.h"
26-
#include "PWGHF/Utils/utilsAnalysis.h"
2726

2827
#include "Common/Core/RecoDecay.h"
2928
#include "Common/DataModel/Centrality.h"
@@ -260,8 +259,8 @@ enum ResonantChannel : int8_t {
260259

261260
namespace
262261
{
263-
std::unordered_map<int8_t, std::unordered_map<int8_t, int8_t>> channelsResonant = {{{Mother::Ds, {{ResonantChannel::PhiPi, hf_decay::hf_cand_3prong::DecayChannelResonant::DsToPhiPi}, {ResonantChannel::Kstar0K, hf_decay::hf_cand_3prong::DecayChannelResonant::DsToKstar0K}}},
264-
{Mother::Dplus, {{ResonantChannel::PhiPi, hf_decay::hf_cand_3prong::DecayChannelResonant::DplusToPhiPi}, {ResonantChannel::Kstar0K, hf_decay::hf_cand_3prong::DecayChannelResonant::DplusToKstar0K}}}}};
262+
const std::unordered_map<int8_t, std::unordered_map<int8_t, int8_t>> channelsResonant = {{{Mother::Ds, {{ResonantChannel::PhiPi, hf_decay::hf_cand_3prong::DecayChannelResonant::DsToPhiPi}, {ResonantChannel::Kstar0K, hf_decay::hf_cand_3prong::DecayChannelResonant::DsToKstar0K}}},
263+
{Mother::Dplus, {{ResonantChannel::PhiPi, hf_decay::hf_cand_3prong::DecayChannelResonant::DplusToPhiPi}, {ResonantChannel::Kstar0K, hf_decay::hf_cand_3prong::DecayChannelResonant::DplusToKstar0K}}}}};
265264
}
266265

267266
/// Writes the full information in an output TTree

0 commit comments

Comments
 (0)