Skip to content

Commit 4dba271

Browse files
committed
Fix includes in candidate creators
1 parent 6ebf843 commit 4dba271

5 files changed

Lines changed: 7 additions & 11 deletions

File tree

PWGHF/ALICE3/DataModel/CandidateReconstructionTables.h

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,18 @@
2020

2121
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
2222
#include "PWGHF/DataModel/TrackIndexSkimmingTables.h"
23-
#include "PWGHF/Utils/utilsPid.h"
24-
//
25-
#include "PWGLF/DataModel/LFStrangenessTables.h"
26-
27-
#include "Common/Core/RecoDecay.h"
2823

2924
#include <CommonConstants/PhysicsConstants.h>
3025
#include <Framework/ASoA.h>
3126
#include <Framework/AnalysisDataModel.h>
3227

33-
#include <array>
34-
#include <cstdint>
35-
3628
namespace o2::aod
3729
{
3830
// specific chic candidate properties
3931
namespace hf_cand_chic
4032
{
4133
DECLARE_SOA_INDEX_COLUMN_FULL(Prong0, prong0, int, HfCand2Prong, "_0"); // Jpsi index
42-
DECLARE_SOA_INDEX_COLUMN_FULL(Prong1, prong1, int, ECALs, "_1");
34+
// DECLARE_SOA_INDEX_COLUMN_FULL(Prong1, prong1, int, ECALs, "_1");
4335
DECLARE_SOA_COLUMN(JpsiToMuMuMass, jpsiToMuMuMass, float); // Jpsi mass
4436
} // namespace hf_cand_chic
4537

@@ -52,7 +44,7 @@ DECLARE_SOA_TABLE(HfCandChicBase, "AOD", "HFCANDCHICBASE",
5244
hf_cand::PxProng1, hf_cand::PyProng1, hf_cand::PzProng1,
5345
hf_cand::ImpactParameter0, hf_cand::ImpactParameter1,
5446
hf_cand::ErrorImpactParameter0, hf_cand::ErrorImpactParameter1,
55-
hf_cand_chic::Prong0Id, hf_cand_chic::Prong1Id,
47+
hf_cand_chic::Prong0Id, /*hf_cand_chic::Prong1Id,*/
5648
hf_track_index::HFflag, hf_cand_chic::JpsiToMuMuMass,
5749
/* dynamic columns */
5850
hf_cand_2prong::M<hf_cand::PxProng0, hf_cand::PyProng0, hf_cand::PzProng0, hf_cand::PxProng1, hf_cand::PyProng1, hf_cand::PzProng1>,

PWGHF/ALICE3/TableProducer/candidateCreatorChic.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,12 @@
1515
///
1616
/// \author Alessandro De Falco <alessandro.de.falco@ca.infn.it>, Cagliari University
1717

18+
#include "PWGHF/ALICE3/DataModel/CandidateReconstructionTables.h"
1819
#include "PWGHF/Core/HfHelper.h"
20+
#include "PWGHF/DataModel/AliasTables.h"
1921
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
2022
#include "PWGHF/DataModel/CandidateSelectionTables.h"
2123

22-
#include "ALICE3/DataModel/ECAL.h"
2324
#include "Common/Core/trackUtilities.h"
2425

2526
#include <CommonConstants/PhysicsConstants.h>

PWGHF/ALICE3/TableProducer/candidateCreatorX.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
/// \author Rik Spijkers <r.spijkers@students.uu.nl>, Utrecht University
1717
/// \author Luca Micheletti <luca.micheletti@to.infn.it>, INFN
1818

19+
#include "PWGHF/ALICE3/DataModel/CandidateReconstructionTables.h"
1920
#include "PWGHF/Core/HfHelper.h"
2021
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
2122
#include "PWGHF/DataModel/CandidateSelectionTables.h"

PWGHF/ALICE3/TableProducer/candidateCreatorXicc.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
/// \author Mattia Faggin <mattia.faggin@cern.ch>, University and INFN PADOVA
1919

2020
#include "PWGHF/ALICE3/Core/DecayChannelsLegacy.h"
21+
#include "PWGHF/ALICE3/DataModel/CandidateReconstructionTables.h"
2122
#include "PWGHF/Core/HfHelper.h"
2223
#include "PWGHF/DataModel/AliasTables.h"
2324
#include "PWGHF/DataModel/CandidateReconstructionTables.h"

PWGHF/ALICE3/TableProducer/treeCreatorChicToJpsiGamma.cxx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
/// \author Alessandro De Falco <alessandro.de.falco@ca.infn.it>, Università/INFN Cagliari
1919
/// \author Luca Micheletti <luca.micheletti@to.infn.it>, INFN
2020

21+
#include "PWGHF/ALICE3/DataModel/CandidateReconstructionTables.h"
2122
#include "PWGHF/Core/HfHelper.h"
2223
#include "PWGHF/DataModel/CandidateReconstructionTables.h"
2324
#include "PWGHF/DataModel/CandidateSelectionTables.h"

0 commit comments

Comments
 (0)