Commit in lcsim/src/org/lcsim/contrib/uiowa/structural on MAIN
TrackSegmentFinder.java+1-11.3 -> 1.4
Type safety

lcsim/src/org/lcsim/contrib/uiowa/structural
TrackSegmentFinder.java 1.3 -> 1.4
diff -u -r1.3 -r1.4
--- TrackSegmentFinder.java	14 Oct 2005 17:47:28 -0000	1.3
+++ TrackSegmentFinder.java	14 Oct 2005 18:07:08 -0000	1.4
@@ -101,7 +101,7 @@
 	    }
 	    // Require that they have at least 4 hits:
 	    ClusterSizeDecision dec = new ClusterSizeDecision(4);
-	    ListFilter filter = new ListFilter(dec);
+	    ListFilter<Cluster> filter = new ListFilter<Cluster> (dec);
 	    List<Cluster> filteredTrackSegments = filter.filterList(allTrackSegments);
 	    // Add them together and write to map:
 	    mapClustersToTracks.put(cluster, filteredTrackSegments);
CVSspam 0.2.8