Skip to content

Commit

Permalink
Update NearestNeighborRMSClusterer.java
Browse files Browse the repository at this point in the history
commit 4
  • Loading branch information
rodwyer100 authored Jun 28, 2024
1 parent 6b2efbc commit 176bdd9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,8 @@ public List<List<LCRelation>> findClusters(List<LCRelation> fittedHits) {
//WILL RETURN THE LIST OF SPLIT CLUSTERS, THOUGH NOT CHECKED BY SIGNIFICANCE
private ArrayList<List<LCRelation>> hasV(List<LCRelation> cluster){
ArrayList<Integer> vloc = new ArrayList<Integer>();
int minChan=1000000;int maxChan=-1;
int minChan=1000000;
int maxChan=-1;
//CHANNELS AREN'T ORDERED PROPERLY, SO YOU HAVE TO ORDER THEM
for(int I=0;I<cluster.size();I++){
RawTrackerHit rawHit = FittedRawTrackerHit.getRawTrackerHit(cluster.get(I));
Expand Down

0 comments on commit 176bdd9

Please sign in to comment.