Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
fix cut on minimum number of superlayers: issue surfaced because of p…
Browse files Browse the repository at this point in the history
…rintouts activated in debug mode giving exceptions for 4-segments track candidate
  • Loading branch information
raffaelladevita committed Dec 17, 2021
1 parent 2eae7ae commit 2beaace
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public boolean processDataEvent(DataEvent event) {
TrackCandListFinder trkcandFinder = new TrackCandListFinder("TimeBased");
TrajectoryFinder trjFind = new TrajectoryFinder();
for (Track TrackArray1 : TrackArray) {
if (TrackArray1 == null || TrackArray1.get_ListOfHBSegments() == null || TrackArray1.get_ListOfHBSegments().size() < 4) {
if (TrackArray1 == null || TrackArray1.get_ListOfHBSegments() == null || TrackArray1.get_ListOfHBSegments().size() < 5) {
continue;
}
TrackArray1.set_MissingSuperlayer(get_Status(TrackArray1));
Expand Down

0 comments on commit 2beaace

Please sign in to comment.