Skip to content

Commit 73f7b06

Browse files
tongtongcaobaltzell
authored andcommitted
cancel pruner in clustering
1 parent 8154e7e commit 73f7b06

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

reconstruction/dc/src/main/java/org/jlab/rec/dc/cluster/ClusterFinder.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,7 @@ public List<FittedCluster> FindHitBasedClusters(List<Hit> allhits, ClusterCleane
183183
//find clumps of hits init
184184
List<Cluster> clusters = this.findClumps(allhits, ct);
185185

186+
/*
186187
allhits.clear();
187188
188189
for (Cluster clus : clusters) {
@@ -193,13 +194,12 @@ public List<FittedCluster> FindHitBasedClusters(List<Hit> allhits, ClusterCleane
193194
this.fillHitArray(allhits, 0);
194195
clusters.clear();
195196
clusters = this.findClumps(allhits, ct);
196-
197-
/*
197+
*/
198+
198199
//Sort hits in clusters
199200
for (Cluster clus : clusters) {
200201
Collections.sort(clus);
201-
}
202-
*/
202+
}
203203

204204
// create cluster list to be fitted
205205
List<FittedCluster> selectedClusList = new ArrayList<>();

0 commit comments

Comments
 (0)