1515// / In this file are defined and filled the output tables
1616// / \note Extended from HFTreeCreatorD0ToKPi, HFTreeCreatorLcToPKPi, HFTreeCreatorXToJpsiPiPi
1717// /
18- // / \author Jinjoo Seo <jin.joo.seo@cern.ch>, CERN
18+ // / \author Jinjoo Seo <jin.joo.seo@cern.ch>, Inha University
1919
2020#include " Framework/runDataProcessing.h"
2121#include " Framework/AnalysisTask.h"
2828using namespace o2 ;
2929using namespace o2 ::framework;
3030using namespace o2 ::aod::hf_cand;
31- using namespace o2 ::aod::hf_cand_prong2;
32- using namespace o2 ::aod::hf_cand_prong3;
3331using namespace o2 ::aod::hf_cand_xicc;
3432
3533namespace o2 ::aod
@@ -198,7 +196,7 @@ struct HFTreeCreatorXiccToPKPiPi {
198196 // Filling particle properties
199197 rowCandidateFullParticles.reserve (particles.size ());
200198 for (auto & particle : particles) {
201- if (std::abs (particle.flagMCMatchGen ()) == 1 << XiccToXicPi) {
199+ if (std::abs (particle.flagMCMatchGen ()) == 1 << DecayType:: XiccToXicPi) {
202200 rowCandidateFullParticles (
203201 particle.mcCollision ().bcId (),
204202 particle.pt (),
@@ -214,6 +212,6 @@ struct HFTreeCreatorXiccToPKPiPi {
214212WorkflowSpec defineDataProcessing (ConfigContext const & cfgc)
215213{
216214 WorkflowSpec workflow;
217- workflow.push_back (adaptAnalysisTask<HFTreeCreatorXiccToPKPiPi>(cfgc, TaskName{ " hf-tree-creator-xicc-topkpipi " } ));
215+ workflow.push_back (adaptAnalysisTask<HFTreeCreatorXiccToPKPiPi>(cfgc));
218216 return workflow;
219217}
0 commit comments