Skip to content
Snippets Groups Projects
Commit 70da7cbe authored by Jovan Mitrevski's avatar Jovan Mitrevski
Browse files

fix photon supercluster building when seed is "isCrackRecovered"

parent f8aae12c
No related branches found
No related tags found
No related merge requests found
......@@ -227,8 +227,7 @@ photonSuperClusterBuilder::SearchForSecondaryClusters(std::size_t photonInd,
}
// Now loop over the potential secondary clusters
// Note: start with index after seed cluster: depends on sorted nature of egammaRecs
for (std::size_t i = photonInd + 1; i < egammaRecs->size(); ++i) {
for (std::size_t i = 0; i < egammaRecs->size(); ++i) {
//First some basic seed cuts
if(isUsed.at(i)){
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment