Skip to content

Commit 8b966d3

Browse files
committed
fix5
Signed-off-by: Felix Schlepper <felix.schlepper@cern.ch>
1 parent 34f08a6 commit 8b966d3

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

Detectors/ITSMFT/ITS/tracking/src/TrackingInterface.cxx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -341,16 +341,14 @@ void ITSTrackingInterface::run(framework::ProcessingContext& pc)
341341
const auto& ir = irs[colId->second];
342342
if (!ir.isDummy()) {
343343
const auto bc = (ir - firstSampledTFIR).toLong() - roFrameBiasInBC;
344-
LOGP(info, "~ bc={} (upcran={})", bc, upcPassRanForBC(bc));
345344
if (bc >= 0 && upcPassRanForBC(bc)) {
346345
const int nCont = std::ranges::count_if(mcReader.getTracks(iSrc, iEve), [](const auto& trk) {
347-
if (!trk.isPrimary() || trk.GetPt() < 0.05 || std::abs(trk.GetEta()) > 1.1) {
346+
if (!trk.isPrimary()) {
348347
return false;
349348
}
350349
const auto* p = o2::O2DatabasePDG::Instance()->GetParticle(trk.GetPdgCode());
351350
return p && p->Charge() != 0;
352351
});
353-
LOGP(info, "~ nCont={}", nCont);
354352
if (nCont > 1) {
355353
const auto label = composeTruthLabel(iEve, iSrc);
356354
truthMultiplicity[label] = nCont;

0 commit comments

Comments
 (0)