Skip to content

Commit afeb8c6

Browse files
committed
minor fix 2
1 parent faea831 commit afeb8c6

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

PWGHF/HFC/DataModel/CorrelationTables.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,6 @@ DECLARE_SOA_COLUMN(IsPrompt, isPrompt, bool); //! U
162162
DECLARE_SOA_COLUMN(IsPhysicalPrimary, isPhysicalPrimary, bool); //! Used in MC-Rec, primary associated particles
163163
DECLARE_SOA_COLUMN(IsAutoCorrelated, isAutoCorrelated, bool); //! Correlation Status
164164
DECLARE_SOA_COLUMN(Cent, cent, float);
165-
DECLARE_SOA_COLUMN(Zv, zv, float);
166165
DECLARE_SOA_COLUMN(PrNsigmTPC, prNsigmTPC, float); //! Associated Particle TPC nSigma proton
167166
DECLARE_SOA_COLUMN(KaNsigmTPC, kaNsigmTPC, float); //! Associated Particle TPC nSigma Kaon
168167
DECLARE_SOA_COLUMN(PiNsigmTPC, piNsigmTPC, float); //! Associated Particle TPC nSigma Pion

PWGHF/HFC/TableProducer/correlatorLcScHadrons.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ struct HfCorrelatorLcScHadrons {
476476
{
477477
bool isPhysicalPrimary = false;
478478
int trackOrigin = -1;
479-
double_t cent = 100.0; // will be updated later
479+
float cent = 100.0; // will be updated later
480480

481481
entryCandHadronPair(getDeltaPhi(track.phi(), candidate.phi()),
482482
track.eta() - candidate.eta(),
@@ -1022,7 +1022,7 @@ struct HfCorrelatorLcScHadrons {
10221022
int8_t chargeAssoc = pdg->GetParticle(particleAssoc.pdgCode())->Charge(); // Retrieve charge
10231023
chargeAssoc = chargeAssoc / std::abs(chargeAssoc);
10241024
registry.fill(HIST("hPtParticleAssocMcGen"), particleAssoc.pt());
1025-
double_t cent = 100.0; // will be updated later
1025+
float cent = 100.0; // will be updated later
10261026

10271027
entryCandHadronPair(getDeltaPhi(particleAssoc.phi(), particle.phi()),
10281028
particleAssoc.eta() - particle.eta(),
@@ -1171,7 +1171,7 @@ struct HfCorrelatorLcScHadrons {
11711171
}
11721172
int8_t chargeLc = pdg->GetParticle(candidate.pdgCode())->Charge(); // Retrieve charge
11731173
int8_t chargeAssoc = pdg->GetParticle(particleAssoc.pdgCode())->Charge(); // Retrieve charge
1174-
double_t cent = 100.0; // will be updated later
1174+
float cent = 100.0; // will be updated later
11751175

11761176
int trackOrigin = RecoDecay::getCharmHadronOrigin(mcParticles, particleAssoc, true);
11771177
bool isPrompt = candidate.originMcGen() == RecoDecay::OriginType::Prompt;

0 commit comments

Comments
 (0)