Skip to content

Commit c1f2a2f

Browse files
authored
[PWGHF] Ds-h correlation derived data - correction table names (AliceO2Group#8308)
1 parent 5a75e37 commit c1f2a2f

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

PWGHF/HFC/DataModel/DerivedDataCorrelationTables.h

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,27 +26,27 @@ DECLARE_SOA_COLUMN(Multiplicity, multiplicity, float); //! Event multiplicity
2626
DECLARE_SOA_COLUMN(PosZ, posZ, float); //! Primary vertex z position
2727

2828
} // namespace hf_collisions_reduced
29-
DECLARE_SOA_TABLE(HfRedCollisions, "AOD", "COLLREDUCED", //! Table with collision info
29+
DECLARE_SOA_TABLE(HfcRedCollisions, "AOD", "HFCREDCOLLISION", //! Table with collision info
3030
soa::Index<>,
3131
aod::hf_collisions_reduced::Multiplicity,
3232
aod::hf_collisions_reduced::PosZ);
3333

34-
using HfRedCollision = HfRedCollisions::iterator;
34+
using HfcRedCollision = HfcRedCollisions::iterator;
3535

3636
// DECLARE_SOA_TABLE(HfCandColCounts, "AOD", "HFCANDCOLCOUNT", //! Table with number of collisions which contain at least one candidate
3737
// aod::hf_collisions_reduced::OriginalCollisionCount);
3838

3939
namespace hf_candidate_reduced
4040
{
41-
DECLARE_SOA_INDEX_COLUMN(HfRedCollision, hfRedCollision); //! ReducedCollision index
41+
DECLARE_SOA_INDEX_COLUMN(HfcRedCollision, hfcRedCollision); //! ReducedCollision index
4242
DECLARE_SOA_COLUMN(PhiCand, phiCand, float); //! Phi of the candidate
4343
DECLARE_SOA_COLUMN(EtaCand, etaCand, float); //! Eta of the candidate
4444
DECLARE_SOA_COLUMN(PtCand, ptCand, float); //! Pt of the candidate
4545
DECLARE_SOA_COLUMN(InvMassDs, invMassDs, float); //! Invariant mass of Ds candidate
4646
} // namespace hf_candidate_reduced
4747
DECLARE_SOA_TABLE(DsCandReduced, "AOD", "DSCANDREDUCED", //! Table with Ds candidate info (rectangular selection)
4848
soa::Index<>,
49-
aod::hf_candidate_reduced::HfRedCollisionId,
49+
aod::hf_candidate_reduced::HfcRedCollisionId,
5050
aod::hf_candidate_reduced::PhiCand,
5151
aod::hf_candidate_reduced::EtaCand,
5252
aod::hf_candidate_reduced::PtCand,
@@ -59,9 +59,9 @@ DECLARE_SOA_COLUMN(EtaAssocTrack, etaAssocTrack, float); //! Eta of the track
5959
DECLARE_SOA_COLUMN(PhiAssocTrack, phiAssocTrack, float); //! Phi of the track
6060
DECLARE_SOA_COLUMN(PtAssocTrack, ptAssocTrack, float); //! Pt of the track
6161
} // namespace hf_assoc_track_reduced
62-
DECLARE_SOA_TABLE(AssocTrackReduced, "AOD", "TRACKREDUCED", //! Table with associated track info
62+
DECLARE_SOA_TABLE(AssocTrackRed, "AOD", "ASSOCTRACKRED", //! Table with associated track info
6363
soa::Index<>,
64-
aod::hf_candidate_reduced::HfRedCollisionId,
64+
aod::hf_candidate_reduced::HfcRedCollisionId,
6565
aod::hf_assoc_track_reduced::PhiAssocTrack,
6666
aod::hf_assoc_track_reduced::EtaAssocTrack,
6767
aod::hf_assoc_track_reduced::PtAssocTrack)

PWGHF/HFC/TableProducer/correlatorDsHadrons.cxx

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
/// \author Grazia Luparello <[email protected]>
1515
/// \author Samuele Cattaruzzi <[email protected]>
1616

17+
#include <vector>
18+
1719
#include "CommonConstants/PhysicsConstants.h"
1820
#include "Framework/AnalysisTask.h"
1921
#include "Framework/HistogramRegistry.h"
@@ -136,9 +138,9 @@ struct HfCorrelatorDsHadrons {
136138
Produces<aod::DsCandRecoInfo> entryDsCandRecoInfo;
137139
Produces<aod::DsCandGenInfo> entryDsCandGenInfo;
138140
Produces<aod::TrackRecoInfo> entryTrackRecoInfo;
139-
Produces<aod::HfRedCollisions> collReduced;
141+
Produces<aod::HfcRedCollisions> collReduced;
140142
Produces<aod::DsCandReduced> candReduced;
141-
Produces<aod::AssocTrackReduced> assocTrackReduced;
143+
Produces<aod::AssocTrackRed> assocTrackReduced;
142144

143145
Configurable<bool> fillHistoData{"fillHistoData", true, "Flag for filling histograms in data processes"};
144146
Configurable<bool> fillHistoMcRec{"fillHistoMcRec", true, "Flag for filling histograms in MC Rec processes"};

0 commit comments

Comments
 (0)