Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RecoHGCal/TICL/plugins/PatternRecognitionbyCA.cc
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ void PatternRecognitionbyCA<TILES>::filter(std::vector<Trackster> &output,
}
}
output.reserve(selectedTrackstersIds.size());
bool isRegionalIter = (input.regions[0].index != -1);
bool isRegionalIter = !input.regions.empty() && (input.regions[0].index != -1);
for (unsigned i = 0; i < selectedTrackstersIds.size(); ++i) {
const auto &t = inTracksters[selectedTrackstersIds[i]];
if (isRegionalIter) {
Expand Down
1 change: 1 addition & 0 deletions RecoHGCal/TICL/python/CLUE3DHighStep_cff.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@

from Configuration.ProcessModifiers.ticl_v5_cff import ticl_v5
ticl_v5.toModify(ticlTrackstersCLUE3DHigh.pluginPatternRecognitionByCLUE3D, computeLocalTime = cms.bool(True))
ticl_v5.toModify(ticlTrackstersCLUE3DHigh.pluginPatternRecognitionByCLUE3D, usePCACleaning = cms.bool(True))
ticl_v5.toModify(ticlTrackstersCLUE3DHigh.inferenceAlgo, type = cms.string('TracksterInferenceByDNN'))

ticlCLUE3DHighStepTask = cms.Task(ticlSeedingGlobal
Expand Down