Skip to content

Commit 96b02f0

Browse files
authored
[ALICE3] TRK: fix ACTS clusterer compilation
Comment out the processing of digMC2ROFs if condition.
1 parent d87cff5 commit 96b02f0

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
@@ -385,10 +385,10 @@ void ClustererACTS::process(gsl::span<const Digit> digits,
385385
outFirst, static_cast<int>(clusters.size()) - outFirst);
386386
}
387387

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

0 commit comments

Comments
 (0)