Skip to content

Commit 19b82ba

Browse files
authored
[ALICE3] TRK: fix ACTS clusterer compilation (#15352)
Comment out the processing of digMC2ROFs if condition.
1 parent 5b4b32f commit 19b82ba

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

Detectors/Upgrades/ALICE3/TRK/reconstruction/src/ClustererACTS.cxx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -387,10 +387,10 @@ void ClustererACTS::process(gsl::span<const Digit> digits,
387387
outFirst, static_cast<int>(clusters.size()) - outFirst);
388388
}
389389

390-
if (clusterMC2ROFs && !digMC2ROFs.empty()) {
391-
clusterMC2ROFs->reserve(clusterMC2ROFs->size() + digMC2ROFs.size());
392-
for (const auto& in : digMC2ROFs) {
393-
clusterMC2ROFs->emplace_back(in.eventRecordID, in.rofRecordID, in.minROF, in.maxROF);
394-
}
395-
}
390+
// if (clusterMC2ROFs && !digMC2ROFs.empty()) {
391+
// clusterMC2ROFs->reserve(clusterMC2ROFs->size() + digMC2ROFs.size());
392+
// for (const auto& in : digMC2ROFs) {
393+
// clusterMC2ROFs->emplace_back(in.eventRecordID, in.rofRecordID, in.minROF, in.maxROF);
394+
// }
395+
// }
396396
}

0 commit comments

Comments
 (0)