diff --git a/PWGUD/TableProducer/SGCandProducer.cxx b/PWGUD/TableProducer/SGCandProducer.cxx index 83dee94f9a5..7c6077c1dec 100644 --- a/PWGUD/TableProducer/SGCandProducer.cxx +++ b/PWGUD/TableProducer/SGCandProducer.cxx @@ -35,7 +35,7 @@ struct SGCandProducer { // data tables Produces outputSGCollisions; -// Produces outputZDCCollisions; + // Produces outputZDCCollisions; Produces outputCollisions; Produces outputCollisionsSels; Produces outputCollsLabels; @@ -59,7 +59,7 @@ struct SGCandProducer { // data inputs using CCs = soa::Join; using CC = CCs::iterator; -// using BCs = soa::Join; + // using BCs = soa::Join; using BCs = soa::Join; using BC = BCs::iterator; using TCs = soa::Join collision %d", collision.globalIndex()); @@ -177,9 +177,9 @@ struct SGCandProducer { // fill FITInfo upchelpers::FITInfo fitInfo{}; udhelpers::getFITinfo(fitInfo, bc.globalBC(), bcs, ft0s, fv0as, fdds); - // upchelpers::ZDCInfo zdcInfo{}; - //udhelpers::getZDCinfo(zdcInfo, bc.globalBC(), bcs, zdcs); - //udhelpers::getZDCinfo(zdcInfo, bc.globalBC(), zdcs); + // upchelpers::ZDCInfo zdcInfo{}; + // udhelpers::getZDCinfo(zdcInfo, bc.globalBC(), bcs, zdcs); + // udhelpers::getZDCinfo(zdcInfo, bc.globalBC(), zdcs); // update SG candidates tables auto rtrwTOF = udhelpers::rPVtrwTOF(tracks, collision.numContrib()); @@ -209,24 +209,24 @@ struct SGCandProducer { } // fill UDZdcs - //outputZDCCollisions(zdcInfo.timeZNA,zdcInfo.timeZNC,zdcInfo.multZNA,zdcInfo.multZNC); + // outputZDCCollisions(zdcInfo.timeZNA,zdcInfo.timeZNC,zdcInfo.multZNA,zdcInfo.multZNC); std::map mapGlobalBcWithZdc{}; auto globalBC = bc.globalBC(); for (const auto& zdc : zdcs) { - //auto globalBC = zdc.bc_as().globalBC(); - //auto bc = zdc.bc_as().globalBC(); + // auto globalBC = zdc.bc_as().globalBC(); + // auto bc = zdc.bc_as().globalBC(); if (std::abs(zdc.timeZNA()) > 2.f && std::abs(zdc.timeZNC()) > 2.f) continue; - //mapGlobalBcWithZdc[bc.globalBC()] = zdc.globalIndex(); + // mapGlobalBcWithZdc[bc.globalBC()] = zdc.globalIndex(); mapGlobalBcWithZdc[globalBC] = zdc.globalIndex(); - //mapGlobalBcWithZdc[bc] = zdc.globalIndex(); + // mapGlobalBcWithZdc[bc] = zdc.globalIndex(); } int candID = 0; auto nZdcs = mapGlobalBcWithZdc.size(); if (nZdcs > 0) { - //auto itZDC = mapGlobalBcWithZdc.find(bc.globalBC()); + // auto itZDC = mapGlobalBcWithZdc.find(bc.globalBC()); auto itZDC = mapGlobalBcWithZdc.find(globalBC); - //auto itZDC = mapGlobalBcWithZdc.find(bc); + // auto itZDC = mapGlobalBcWithZdc.find(bc); if (itZDC != mapGlobalBcWithZdc.end()) { const auto& zdc = zdcs.iteratorAt(itZDC->second); float timeZNA = zdc.timeZNA();