Skip to content

Commit 4c7c62a

Browse files
committed
Please consider the following formatting changes
1 parent e8cc00f commit 4c7c62a

File tree

7 files changed

+171
-176
lines changed

7 files changed

+171
-176
lines changed

PWGHF/Core/HfMlResponseOmegacToOmegaPi.h

Lines changed: 41 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -28,41 +28,41 @@
2828
// Fill the map of available input features
2929
// the key is the feature's name (std::string)
3030
// the value is the corresponding value in EnumInputFeatures
31-
#define FILL_MAP_OMEGAC0(FEATURE) \
32-
{ \
33-
#FEATURE, static_cast < uint8_t>(InputFeaturesOmegacToOmegaPi::FEATURE) \
31+
#define FILL_MAP_OMEGAC0(FEATURE) \
32+
{ \
33+
#FEATURE, static_cast<uint8_t>(InputFeaturesOmegacToOmegaPi::FEATURE) \
3434
}
3535

3636
// Check if the index of mCachedIndices (index associated to a FEATURE)
3737
// matches the entry in EnumInputFeatures associated to this FEATURE
3838
// if so, the inputFeatures vector is filled with the FEATURE's value
3939
// by calling the corresponding GETTER from OBJECT
40-
#define CHECK_AND_FILL_VEC_OMEGAC0_FULL(OBJECT, FEATURE, GETTER) \
40+
#define CHECK_AND_FILL_VEC_OMEGAC0_FULL(OBJECT, FEATURE, GETTER) \
4141
case static_cast<uint8_t>(InputFeaturesOmegacToOmegaPi::FEATURE): { \
42-
inputFeatures.emplace_back(OBJECT.GETTER()); \
43-
break; \
42+
inputFeatures.emplace_back(OBJECT.GETTER()); \
43+
break; \
4444
}
4545

4646
// Specific case of CHECK_AND_FILL_VEC_OMEGAC0_FULL(OBJECT, FEATURE, GETTER)
4747
// where OBJECT is named candidate and FEATURE = GETTER
48-
#define CHECK_AND_FILL_VEC_OMEGAC0(GETTER) \
48+
#define CHECK_AND_FILL_VEC_OMEGAC0(GETTER) \
4949
case static_cast<uint8_t>(InputFeaturesOmegacToOmegaPi::GETTER): { \
50-
inputFeatures.emplace_back(candidate.GETTER()); \
51-
break; \
50+
inputFeatures.emplace_back(candidate.GETTER()); \
51+
break; \
5252
}
5353

5454
// Variation of CHECK_AND_FILL_VEC_OMEGAC0_FULL(OBJECT, FEATURE, GETTER)
5555
// where GETTER is a method of hfHelper
56-
#define CHECK_AND_FILL_VEC_OMEGAC0_HFHELPER(OBJECT, FEATURE, GETTER) \
57-
case static_cast<uint8_t>(InputFeaturesOmegacToOmegaPi::FEATURE): { \
58-
inputFeatures.emplace_back(hfHelper.GETTER(OBJECT)); \
59-
break; \
56+
#define CHECK_AND_FILL_VEC_OMEGAC0_HFHELPER(OBJECT, FEATURE, GETTER) \
57+
case static_cast<uint8_t>(InputFeaturesOmegacToOmegaPi::FEATURE): { \
58+
inputFeatures.emplace_back(hfHelper.GETTER(OBJECT)); \
59+
break; \
6060
}
6161
namespace o2::analysis
6262
{
6363
enum class InputFeaturesOmegacToOmegaPi : uint8_t {
6464

65-
cosPaOmegacToPv=0,
65+
cosPaOmegacToPv = 0,
6666
kfDcaXYPiFromOmegac,
6767
cosThetaStarPiFromOmegac,
6868
chi2TopoPiFromOmegacToPv,
@@ -74,7 +74,7 @@ enum class InputFeaturesOmegacToOmegaPi : uint8_t {
7474
nSigmaTPCPiFromV0,
7575
nSigmaTPCPiFromOmegac,
7676
nSigmaTPCKaFromCasc
77-
77+
7878
};
7979

8080
template <typename TypeOutputScore = float>
@@ -93,27 +93,26 @@ class HfMlResponseOmegacToOmegaPi : public HfMlResponse<TypeOutputScore>
9393
/// \param lamProngPi is the candidate's lamProngPi
9494
/// \return inputFeatures vector
9595
template <typename T1, typename T2, typename T3>
96-
std::vector<float> getInputFeatures(T1 const& candidate,T2 const& lamProngPi,T2 const& cascProng, T3 const& charmBaryonProng)
96+
std::vector<float> getInputFeatures(T1 const& candidate, T2 const& lamProngPi, T2 const& cascProng, T3 const& charmBaryonProng)
9797
{
9898
std::vector<float> inputFeatures;
9999

100100
for (const auto& idx : MlResponse<TypeOutputScore>::mCachedIndices) {
101101
switch (idx) {
102102

103-
CHECK_AND_FILL_VEC_OMEGAC0(kfDcaXYPiFromOmegac);
104-
CHECK_AND_FILL_VEC_OMEGAC0(cosThetaStarPiFromOmegac);
105-
CHECK_AND_FILL_VEC_OMEGAC0(chi2TopoPiFromOmegacToPv);
106-
CHECK_AND_FILL_VEC_OMEGAC0(dcaCharmBaryonDau);
107-
CHECK_AND_FILL_VEC_OMEGAC0(invMassCascade);
108-
CHECK_AND_FILL_VEC_OMEGAC0(massCascChi2OverNdf);
109-
CHECK_AND_FILL_VEC_OMEGAC0(kfDcaXYCascToPv);
110-
CHECK_AND_FILL_VEC_OMEGAC0_FULL(candidate,cosPaOmegacToPv,cosPACharmBaryon);
111-
CHECK_AND_FILL_VEC_OMEGAC0_FULL(candidate,cosPaCascToPv,cosPACasc);
112-
// TPC PID variables
113-
CHECK_AND_FILL_VEC_OMEGAC0_FULL(lamProngPi, nSigmaTPCPiFromV0, tpcNSigmaPi);
114-
CHECK_AND_FILL_VEC_OMEGAC0_FULL(cascProng, nSigmaTPCKaFromCasc, tpcNSigmaKa);
115-
CHECK_AND_FILL_VEC_OMEGAC0_FULL(charmBaryonProng,nSigmaTPCPiFromOmegac, tpcNSigmaPi);
116-
103+
CHECK_AND_FILL_VEC_OMEGAC0(kfDcaXYPiFromOmegac);
104+
CHECK_AND_FILL_VEC_OMEGAC0(cosThetaStarPiFromOmegac);
105+
CHECK_AND_FILL_VEC_OMEGAC0(chi2TopoPiFromOmegacToPv);
106+
CHECK_AND_FILL_VEC_OMEGAC0(dcaCharmBaryonDau);
107+
CHECK_AND_FILL_VEC_OMEGAC0(invMassCascade);
108+
CHECK_AND_FILL_VEC_OMEGAC0(massCascChi2OverNdf);
109+
CHECK_AND_FILL_VEC_OMEGAC0(kfDcaXYCascToPv);
110+
CHECK_AND_FILL_VEC_OMEGAC0_FULL(candidate, cosPaOmegacToPv, cosPACharmBaryon);
111+
CHECK_AND_FILL_VEC_OMEGAC0_FULL(candidate, cosPaCascToPv, cosPACasc);
112+
// TPC PID variables
113+
CHECK_AND_FILL_VEC_OMEGAC0_FULL(lamProngPi, nSigmaTPCPiFromV0, tpcNSigmaPi);
114+
CHECK_AND_FILL_VEC_OMEGAC0_FULL(cascProng, nSigmaTPCKaFromCasc, tpcNSigmaKa);
115+
CHECK_AND_FILL_VEC_OMEGAC0_FULL(charmBaryonProng, nSigmaTPCPiFromOmegac, tpcNSigmaPi);
117116
}
118117
}
119118

@@ -126,21 +125,21 @@ class HfMlResponseOmegacToOmegaPi : public HfMlResponse<TypeOutputScore>
126125
{
127126
MlResponse<TypeOutputScore>::mAvailableInputFeatures = {
128127

129-
FILL_MAP_OMEGAC0(invMassCascade),
130-
FILL_MAP_OMEGAC0(cosPaOmegacToPv),
131-
FILL_MAP_OMEGAC0(dcaCharmBaryonDau),
132-
FILL_MAP_OMEGAC0(kfDcaXYPiFromOmegac),
133-
FILL_MAP_OMEGAC0(cosThetaStarPiFromOmegac),
134-
FILL_MAP_OMEGAC0(chi2TopoPiFromOmegacToPv),
135-
FILL_MAP_OMEGAC0(massCascChi2OverNdf),
136-
FILL_MAP_OMEGAC0(cosPaCascToPv),
137-
FILL_MAP_OMEGAC0(kfDcaXYCascToPv),
128+
FILL_MAP_OMEGAC0(invMassCascade),
129+
FILL_MAP_OMEGAC0(cosPaOmegacToPv),
130+
FILL_MAP_OMEGAC0(dcaCharmBaryonDau),
131+
FILL_MAP_OMEGAC0(kfDcaXYPiFromOmegac),
132+
FILL_MAP_OMEGAC0(cosThetaStarPiFromOmegac),
133+
FILL_MAP_OMEGAC0(chi2TopoPiFromOmegacToPv),
134+
FILL_MAP_OMEGAC0(massCascChi2OverNdf),
135+
FILL_MAP_OMEGAC0(cosPaCascToPv),
136+
FILL_MAP_OMEGAC0(kfDcaXYCascToPv),
138137
// TPC PID variables
139138
FILL_MAP_OMEGAC0(nSigmaTPCPiFromV0),
140-
FILL_MAP_OMEGAC0(nSigmaTPCKaFromCasc),
141-
FILL_MAP_OMEGAC0(nSigmaTPCPiFromOmegac),
139+
FILL_MAP_OMEGAC0(nSigmaTPCKaFromCasc),
140+
FILL_MAP_OMEGAC0(nSigmaTPCPiFromOmegac),
142141

143-
};
142+
};
144143
}
145144
};
146145

PWGHF/Core/SelectorCuts.h

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -663,13 +663,12 @@ constexpr double binsPt[nBinsPt + 1] = {
663663
2.0,
664664
4.0,
665665
6.0,
666-
12.0
667-
};
666+
12.0};
668667

669668
auto vecBinsPt = std::vector<double>{binsPt, binsPt + nBinsPt + 1};
670669

671670
// default values for the cuts
672-
// pi_pT
671+
// pi_pT
673672
constexpr double cuts[nBinsPt][nCutVars] = {{0.2}, /* 1 < pt < 2 */
674673
{0.2}, /* 2 < pt < 4 */
675674
{0.6}, /* 4 < pt < 6 */
@@ -680,8 +679,7 @@ static const std::vector<std::string> labelsPt = {
680679
"pT bin 0",
681680
"pT bin 1",
682681
"pT bin 2",
683-
"pT bin 3"
684-
};
682+
"pT bin 3"};
685683

686684
// column labels
687685
static const std::vector<std::string> labelsCutVar = {"pT pi from Omegac"};

PWGHF/D2H/Tasks/taskOmegac0ToOmegapi.cxx

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
///
1515
/// \author Yunfan Liu <[email protected]>, China University of Geosciences
1616

17-
1817
#include <vector>
1918

2019
#include "CommonConstants/PhysicsConstants.h"
@@ -56,14 +55,13 @@ struct HfTaskOmegac0 {
5655
ConfigurableAxis thnConfigAxisGenPtB{"thnConfigAxisGenPtB", {1000, 0, 100}, "Gen Pt B"};
5756
ConfigurableAxis thnConfigAxisNumPvContr{"thnConfigAxisNumPvContr", {200, -0.5, 199.5}, "Number of PV contributors"};
5857

59-
6058
HfHelper hfHelper;
6159
using MyTracksWMc = soa::Join<aod::Tracks, aod::TracksIU, aod::McTrackLabels>;
62-
60+
6361
using Omegac0Candidates = soa::Join<aod::HfCandToOmegaPi, aod::HfSelToOmegaPi>;
6462
using Omegac0CandidatesKF = soa::Join<Omegac0Candidates, aod::HfOmegacKf>;
6563
using OmegaC0CandidatesMcKF = soa::Join<Omegac0CandidatesKF, aod::HfToOmegaPiMCRec>;
66-
64+
6765
using Omegac0CandidatesMl = soa::Join<aod::HfCandToOmegaPi, aod::HfMlSelOmegacToOmegaPi>;
6866
using Omegac0CandidatesMlKF = soa::Join<Omegac0CandidatesMl, aod::HfOmegacKf>;
6967
using Omegac0CandidatesMlMcKF = soa::Join<Omegac0CandidatesMlKF, aod::HfToOmegaPiMCRec>;
@@ -73,14 +71,13 @@ struct HfTaskOmegac0 {
7371
PresliceUnsorted<CollisionsWithMcLabels> colPerMcCollision = aod::mccollisionlabel::mcCollisionId;
7472
SliceCache cache;
7573

76-
7774
HistogramRegistry registry{
7875
"registry",
79-
{}};
76+
{}};
8077

8178
void init(InitContext&)
8279
{
83-
std::array<bool, 12> doprocess{ doprocessDataWithKFParticle, doprocessMcWithKFParticle, doprocessDataWithKFParticleMl, doprocessMcWithKFParticleMl};
80+
std::array<bool, 12> doprocess{doprocessDataWithKFParticle, doprocessMcWithKFParticle, doprocessDataWithKFParticleMl, doprocessMcWithKFParticleMl};
8481
if ((std::accumulate(doprocess.begin(), doprocess.end(), 0)) == 0) {
8582
LOGP(fatal, "At least one process function should be enabled at a time.");
8683
}
@@ -94,14 +91,18 @@ struct HfTaskOmegac0 {
9491
const AxisSpec thnAxisGenPtB{thnConfigAxisGenPtB, "#it{p}_{T}^{B} (GeV/#it{c})"};
9592
const AxisSpec thnAxisNumPvContr{thnConfigAxisNumPvContr, "Number of PV contributors"};
9693

97-
if ( doprocessMcWithKFParticle || doprocessMcWithKFParticleMl) {
94+
if (doprocessMcWithKFParticle || doprocessMcWithKFParticleMl) {
9895
std::vector<AxisSpec> axesAcc = {thnAxisGenPtD, thnAxisGenPtB, thnAxisY, thnAxisOrigin, thnAxisNumPvContr};
9996
registry.add("hSparseAcc", "Thn for generated Omega0 from charm and beauty", HistType::kTHnSparseD, axesAcc);
10097
registry.get<THnSparse>(HIST("hSparseAcc"))->Sumw2();
10198
}
10299

103-
std::vector<AxisSpec> axes = {thnAxisMass, thnAxisPt, thnAxisY,};
104-
if ( doprocessMcWithKFParticle|| doprocessMcWithKFParticleMl) {
100+
std::vector<AxisSpec> axes = {
101+
thnAxisMass,
102+
thnAxisPt,
103+
thnAxisY,
104+
};
105+
if (doprocessMcWithKFParticle || doprocessMcWithKFParticleMl) {
105106
axes.push_back(thnAxisPtB);
106107
axes.push_back(thnAxisOrigin);
107108
axes.push_back(thnAxisNumPvContr);
@@ -134,9 +135,9 @@ struct HfTaskOmegac0 {
134135
auto rapidityCandidate = candidate.kfRapOmegac();
135136
auto ptCandidate = candidate.ptCharmBaryon();
136137
if constexpr (applyMl) {
137-
registry.fill(HIST("hBdtScoreVsMassVsPtVsPtBVsYVsOriginVsOmegac0Type"), candidate.mlProbOmegac()[0], massOmegac0, ptCandidate, rapidityCandidate);
138-
} else {
139-
registry.fill(HIST("hMassVsPtVsPtBVsYVsOriginVsOmegac0Type"), massOmegac0, ptCandidate, rapidityCandidate);
138+
registry.fill(HIST("hBdtScoreVsMassVsPtVsPtBVsYVsOriginVsOmegac0Type"), candidate.mlProbOmegac()[0], massOmegac0, ptCandidate, rapidityCandidate);
139+
} else {
140+
registry.fill(HIST("hMassVsPtVsPtBVsYVsOriginVsOmegac0Type"), massOmegac0, ptCandidate, rapidityCandidate);
140141
}
141142
}
142143
}
@@ -148,9 +149,9 @@ struct HfTaskOmegac0 {
148149
PROCESS_SWITCH(HfTaskOmegac0, processDataWithKFParticle, "process taskOmegac0 with KFParticle", false);
149150
// TODO: add processKFParticleCent
150151

151-
void processDataWithKFParticleMl(Omegac0CandidatesMlKF const&omegac0CandidatesMlKF, Collisions const& collisions)
152+
void processDataWithKFParticleMl(Omegac0CandidatesMlKF const& omegac0CandidatesMlKF, Collisions const& collisions)
152153
{
153-
processData<true>(omegac0CandidatesMlKF, collisions);
154+
processData<true>(omegac0CandidatesMlKF, collisions);
154155
}
155156
PROCESS_SWITCH(HfTaskOmegac0, processDataWithKFParticleMl, "process taskOmegac0 with KFParticle and ML selections", false);
156157
// TODO: add processKFParticleMlCent
@@ -176,15 +177,15 @@ struct HfTaskOmegac0 {
176177
massOmegac0 = candidate.invMassCharmBaryon();
177178
auto ptCandidate = candidate.ptCharmBaryon();
178179
auto rapidityCandidate = candidate.kfRapOmegac();
179-
180-
if (candidate.flagMcMatchRec() == (1 << aod::hf_cand_xic0_omegac0::DecayType::OmegaczeroToOmegaPi)) {
181-
if constexpr (applyMl) {
182-
registry.fill(HIST("hBdtScoreVsMassVsPtVsPtBVsYVsOriginVsOmegac0Type"), candidate.mlProbOmegac()[0], massOmegac0, ptCandidate, rapidityCandidate, candidate.ptBhadMotherPart(), candidate.originRec(), numPvContributors);
183-
184-
} else {
185-
registry.fill(HIST("hMassVsPtVsPtBVsYVsOriginVsOmegac0Type"), massOmegac0, ptCandidate, rapidityCandidate, candidate.ptBhadMotherPart(), candidate.originRec(), numPvContributors);
186-
}
187-
}
180+
181+
if (candidate.flagMcMatchRec() == (1 << aod::hf_cand_xic0_omegac0::DecayType::OmegaczeroToOmegaPi)) {
182+
if constexpr (applyMl) {
183+
registry.fill(HIST("hBdtScoreVsMassVsPtVsPtBVsYVsOriginVsOmegac0Type"), candidate.mlProbOmegac()[0], massOmegac0, ptCandidate, rapidityCandidate, candidate.ptBhadMotherPart(), candidate.originRec(), numPvContributors);
184+
185+
} else {
186+
registry.fill(HIST("hMassVsPtVsPtBVsYVsOriginVsOmegac0Type"), massOmegac0, ptCandidate, rapidityCandidate, candidate.ptBhadMotherPart(), candidate.originRec(), numPvContributors);
187+
}
188+
}
188189
}
189190
// MC gen.
190191
for (const auto& particle : mcParticles) {
@@ -198,12 +199,11 @@ struct HfTaskOmegac0 {
198199
registry.fill(HIST("hPtGen"), ptGen);
199200
registry.fill(HIST("hPtVsYGen"), ptGen, yGen);
200201

201-
unsigned maxNumContrib = 0;
202+
unsigned maxNumContrib = 0;
202203
const auto& recoCollsPerMcColl = collisions.sliceBy(colPerMcCollision, particle.mcCollision().globalIndex());
203204
for (const auto& recCol : recoCollsPerMcColl) {
204205
maxNumContrib = recCol.numContrib() > maxNumContrib ? recCol.numContrib() : maxNumContrib;
205206
}
206-
207207

208208
if (particle.originGen() == RecoDecay::OriginType::Prompt) {
209209
registry.fill(HIST("hSparseAcc"), ptGen, ptGenB, yGen, 1, maxNumContrib);
@@ -216,7 +216,7 @@ struct HfTaskOmegac0 {
216216
}
217217
}
218218

219-
void processMcWithKFParticle(OmegaC0CandidatesMcKF const&omegaC0CandidatesMcKF,
219+
void processMcWithKFParticle(OmegaC0CandidatesMcKF const& omegaC0CandidatesMcKF,
220220
soa::Join<aod::McParticles, aod::HfToOmegaPiMCGen> const& mcParticles,
221221
MyTracksWMc const& tracks,
222222
CollisionsWithMcLabels const& collisions,

PWGHF/DataModel/CandidateReconstructionTables.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1448,7 +1448,7 @@ DECLARE_SOA_TABLE(HfCandToOmegaPi, "AOD", "HFCANDTOOMEGAPI",
14481448
hf_cand_xic0_omegac0::PtPiFromCharmBaryon<hf_cand_xic0_omegac0::PxBachFromCharmBaryon, hf_cand_xic0_omegac0::PyBachFromCharmBaryon>,
14491449
hf_cand_xic0_omegac0::PtLambda<hf_cand_xic0_omegac0::PxLambda, hf_cand_xic0_omegac0::PyLambda>,
14501450
hf_cand_xic0_omegac0::PtKaFromCasc<hf_cand_xic0_omegac0::PxBachFromCasc, hf_cand_xic0_omegac0::PyBachFromCasc>,
1451-
1451+
14521452
hf_cand_xic0_omegac0::ImpactParCascXY, hf_cand_xic0_omegac0::ImpactParBachFromCharmBaryonXY, hf_cand_xic0_omegac0::ImpactParCascZ, hf_cand_xic0_omegac0::ImpactParBachFromCharmBaryonZ,
14531453
hf_cand_xic0_omegac0::ErrImpactParCascXY, hf_cand_xic0_omegac0::ErrImpactParBachFromCharmBaryonXY,
14541454
hf_cand_xic0_omegac0::V0Id, v0data::PosTrackId, v0data::NegTrackId, hf_cand_xic0_omegac0::CascadeId, hf_cand_xic0_omegac0::BachelorFromCharmBaryonId, cascdata::BachelorId,
@@ -1460,7 +1460,7 @@ DECLARE_SOA_TABLE(HfCandToOmegaPi, "AOD", "HFCANDTOOMEGAPI",
14601460
hf_cand_xic0_omegac0::DcaXYToPvV0Dau0, hf_cand_xic0_omegac0::DcaXYToPvV0Dau1, hf_cand_xic0_omegac0::DcaXYToPvCascDau,
14611461
hf_cand_xic0_omegac0::DcaZToPvV0Dau0, hf_cand_xic0_omegac0::DcaZToPvV0Dau1, hf_cand_xic0_omegac0::DcaZToPvCascDau,
14621462
hf_cand_xic0_omegac0::DcaCascDau, hf_cand_xic0_omegac0::DcaV0Dau, hf_cand_xic0_omegac0::DcaCharmBaryonDau,
1463-
hf_cand_xic0_omegac0::DecLenCharmBaryon, hf_cand_xic0_omegac0::DecLenCascade, hf_cand_xic0_omegac0::DecLenV0, hf_cand_xic0_omegac0::ErrorDecayLengthCharmBaryon, hf_cand_xic0_omegac0::ErrorDecayLengthXYCharmBaryon,hf_track_index::HFflag,
1463+
hf_cand_xic0_omegac0::DecLenCharmBaryon, hf_cand_xic0_omegac0::DecLenCascade, hf_cand_xic0_omegac0::DecLenV0, hf_cand_xic0_omegac0::ErrorDecayLengthCharmBaryon, hf_cand_xic0_omegac0::ErrorDecayLengthXYCharmBaryon, hf_track_index::HFflag,
14641464
o2::soa::Marker<1>);
14651465

14661466
DECLARE_SOA_TABLE(HfCandToOmegaK, "AOD", "HFCANDTOOMEGAK",

PWGHF/TableProducer/candidateCreatorXic0Omegac0.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -666,7 +666,7 @@ struct HfCandidateCreatorXic0Omegac0 {
666666
dcaxyV0Dau0, dcaxyV0Dau1, dcaxyCascBachelor,
667667
dcazV0Dau0, dcazV0Dau1, dcazCascBachelor,
668668
dcaCascDau, dcaV0Dau, dcaCharmBaryonDau,
669-
decLenCharmBaryon, decLenCascade, decLenV0, errorDecayLengthCharmBaryon, errorDecayLengthXYCharmBaryon,cand.hfflag());
669+
decLenCharmBaryon, decLenCascade, decLenV0, errorDecayLengthCharmBaryon, errorDecayLengthXYCharmBaryon, cand.hfflag());
670670

671671
} else {
672672
rowCandToOmegaK(
@@ -1156,7 +1156,7 @@ struct HfCandidateCreatorXic0Omegac0 {
11561156
dcaxyV0Dau0, dcaxyV0Dau1, dcaxyCascBachelor,
11571157
dcazV0Dau0, dcazV0Dau1, dcazCascBachelor,
11581158
kfOmegac0Candidate.kfDcaCascDau, kfOmegac0Candidate.kfDcaV0Dau, kfOmegac0Candidate.kfDcaOmegacDau,
1159-
decLenCharmBaryon, decLenCascade, decLenV0, errorDecayLengthCharmBaryon, errorDecayLengthXYCharmBaryon,cand.hfflag());
1159+
decLenCharmBaryon, decLenCascade, decLenV0, errorDecayLengthCharmBaryon, errorDecayLengthXYCharmBaryon, cand.hfflag());
11601160
// fill kf table
11611161
kfCandidateData(kfOmegac0Candidate.kfDcaXYPiFromOmegac, kfOmegac0Candidate.kfDcaXYCascToPv,
11621162
kfOmegac0Candidate.chi2GeoV0, kfOmegac0Candidate.chi2GeoCasc, kfOmegac0Candidate.chi2GeoOmegac, kfOmegac0Candidate.chi2MassV0, kfOmegac0Candidate.chi2MassCasc,

0 commit comments

Comments
 (0)