Skip to content

Commit 9dee4a1

Browse files
committed
fix bugs
1 parent 91cb6de commit 9dee4a1

1 file changed

Lines changed: 10 additions & 10 deletions

File tree

PWGHF/TableProducer/treeCreatorXic0ToXiPiKf.cxx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ DECLARE_SOA_TABLE(HfKfXicFulls, "AOD", "HFKFXICFULL",
135135
} // namespace o2::aod
136136

137137
/// Writes the full information in an output TTree
138-
struct TreeCreatorXic0ToXiPiKf {
138+
struct HfTreeCreatorXic0ToXiPiKf {
139139

140140
Produces<o2::aod::HfKfXicFulls> rowKfCandidate;
141141

@@ -246,7 +246,7 @@ struct TreeCreatorXic0ToXiPiKf {
246246
fillKfCandidate<false, MyEventTable>(candidate, -7, -7, RecoDecay::OriginType::None, false);
247247
}
248248
}
249-
PROCESS_SWITCH(TreeCreatorXic0ToXiPiKf, processKfData, "Process KF data", false);
249+
PROCESS_SWITCH(HfTreeCreatorXic0ToXiPiKf, processKfData, "Process KF data", false);
250250

251251
void processKfDataWithFT0C(MyTrackTable const&, MyEventTableWithFT0C const&,
252252
soa::Join<aod::HfCandToXiPiKf, aod::HfSelToXiPiKf> const& candidates)
@@ -256,7 +256,7 @@ struct TreeCreatorXic0ToXiPiKf {
256256
fillKfCandidate<true, MyEventTableWithFT0C>(candidate, -7, -7, RecoDecay::OriginType::None, false);
257257
}
258258
}
259-
PROCESS_SWITCH(TreeCreatorXic0ToXiPiKf, processKfDataWithFT0C, "Process KF data with FT0C", false);
259+
PROCESS_SWITCH(HfTreeCreatorXic0ToXiPiKf, processKfDataWithFT0C, "Process KF data with FT0C", false);
260260

261261
void processKfDataWithFT0M(MyTrackTable const&, MyEventTableWithFT0M const&,
262262
soa::Join<aod::HfCandToXiPiKf, aod::HfSelToXiPiKf> const& candidates)
@@ -266,7 +266,7 @@ struct TreeCreatorXic0ToXiPiKf {
266266
fillKfCandidate<true, MyEventTableWithFT0M>(candidate, -7, -7, RecoDecay::OriginType::None, false);
267267
}
268268
}
269-
PROCESS_SWITCH(TreeCreatorXic0ToXiPiKf, processKfDataWithFT0M, "Process KF data with FT0M", false);
269+
PROCESS_SWITCH(HfTreeCreatorXic0ToXiPiKf, processKfDataWithFT0M, "Process KF data with FT0M", false);
270270

271271
void processDataLiteWithNTracksPV(MyTrackTable const&,
272272
soa::Join<aod::HfCandToXiPiKf, aod::HfSelToXiPiKf> const& candidates)
@@ -276,7 +276,7 @@ struct TreeCreatorXic0ToXiPiKf {
276276
fillKfCandidate<true, MyEventTableWithNTracksPV>(candidate, -7, -7, RecoDecay::OriginType::None, false);
277277
}
278278
}
279-
PROCESS_SWITCH(TreeCreatorXic0ToXiPiKf, processDataLiteWithNTracksPV, "Process KF data with Ntracks", false);
279+
PROCESS_SWITCH(HfTreeCreatorXic0ToXiPiKf, processDataLiteWithNTracksPV, "Process KF data with Ntracks", false);
280280

281281
void processKfMcXic0(MyTrackTable const&,
282282
MyMcCandidates const& candidates)
@@ -286,7 +286,7 @@ struct TreeCreatorXic0ToXiPiKf {
286286
fillKfCandidate<false, MyEventTable>(candidate, candidate.flagMcMatchRec(), candidate.debugMcRec(), candidate.originMcRec(), candidate.collisionMatched());
287287
}
288288
}
289-
PROCESS_SWITCH(TreeCreatorXic0ToXiPiKf, processKfMcXic0, "Process MC with information for xic0", false);
289+
PROCESS_SWITCH(HfTreeCreatorXic0ToXiPiKf, processKfMcXic0, "Process MC with information for xic0", false);
290290

291291
void processKfMCWithFT0C(MyTrackTable const&,
292292
MyMcCandidates const& candidates)
@@ -296,7 +296,7 @@ struct TreeCreatorXic0ToXiPiKf {
296296
fillKfCandidate<true, MyEventTableWithFT0C>(candidate, candidate.flagMcMatchRec(), candidate.debugMcRec(), candidate.originMcRec(), candidate.collisionMatched());
297297
}
298298
}
299-
PROCESS_SWITCH(TreeCreatorXic0ToXiPiKf, processKfMCWithFT0C, "Process MC with information for xic0 at FT0C", false);
299+
PROCESS_SWITCH(HfTreeCreatorXic0ToXiPiKf, processKfMCWithFT0C, "Process MC with information for xic0 at FT0C", false);
300300

301301
void processKfMCWithFT0M(MyTrackTable const&,
302302
MyMcCandidates const& candidates)
@@ -306,7 +306,7 @@ struct TreeCreatorXic0ToXiPiKf {
306306
fillKfCandidate<true, MyEventTableWithFT0M>(candidate, candidate.flagMcMatchRec(), candidate.debugMcRec(), candidate.originMcRec(), candidate.collisionMatched());
307307
}
308308
}
309-
PROCESS_SWITCH(TreeCreatorXic0ToXiPiKf, processKfMCWithFT0M, "Process MC with information for xic0 at FT0M", false);
309+
PROCESS_SWITCH(HfTreeCreatorXic0ToXiPiKf, processKfMCWithFT0M, "Process MC with information for xic0 at FT0M", false);
310310

311311
void processMCLiteWithNTracksPV(MyTrackTable const&,
312312
MyMcCandidates const& candidates)
@@ -316,11 +316,11 @@ struct TreeCreatorXic0ToXiPiKf {
316316
fillKfCandidate<true, MyEventTableWithNTracksPV>(candidate, candidate.flagMcMatchRec(), candidate.debugMcRec(), candidate.originMcRec(), candidate.collisionMatched());
317317
}
318318
}
319-
PROCESS_SWITCH(TreeCreatorXic0ToXiPiKf, processMCLiteWithNTracksPV, "Process MC with information for xic0 at Ntrack", false);
319+
PROCESS_SWITCH(HfTreeCreatorXic0ToXiPiKf, processMCLiteWithNTracksPV, "Process MC with information for xic0 at Ntrack", false);
320320
}; // end of struct
321321

322322
WorkflowSpec defineDataProcessing(ConfigContext const& cfgc)
323323
{
324324
return WorkflowSpec{
325-
adaptAnalysisTask<TreeCreatorXic0ToXiPiKf>(cfgc)};
325+
adaptAnalysisTask<HfTreeCreatorXic0ToXiPiKf>(cfgc)};
326326
}

0 commit comments

Comments
 (0)