Commit in lcsim/src/org/lcsim/contrib/uiowa on MAIN
ReclusterDTreeDriver.java+2-21.6 -> 1.7
MJC: Whoops: fix problem with previous commit (incomplete refactoring)

lcsim/src/org/lcsim/contrib/uiowa
ReclusterDTreeDriver.java 1.6 -> 1.7
diff -u -r1.6 -r1.7
--- ReclusterDTreeDriver.java	4 Jan 2008 19:20:27 -0000	1.6
+++ ReclusterDTreeDriver.java	4 Jan 2008 19:25:25 -0000	1.7
@@ -233,7 +233,7 @@
 	Collections.sort(tracksSortedByMomentum, new MomentumSort());
 
 	if (m_debug) {
-	    debugPrintTrackInfo(trackList, unmatchedTracks, tracksMatchedToClusters, uniquelyMatchedTracks, ambiguouslyMatchedTracks, tweakedTracks, seeds);
+	    debugPrintTrackInfo(trackList, unmatchedTracks, tracksMatchedToClusters, uniquelyMatchedTracks, ambiguouslyMatchedTracks, tweakedTracks, seeds, tracksSortedByMomentum, tweakedTracksMatchedToClusters);
 	}
 
 	// Prep for linking
@@ -784,7 +784,7 @@
 	}
     }
 
-    protected void debugPrintTrackInfo(List<Track> trackList, List<Track> unmatchedTracks, Map<Track,Cluster> tracksMatchedToClusters, Set<Track> uniquelyMatchedTracks, Set<Track> ambiguouslyMatchedTracks, List<Track> tweakedTracks, Set<Cluster> seeds) {
+    protected void debugPrintTrackInfo(List<Track> trackList, List<Track> unmatchedTracks, Map<Track,Cluster> tracksMatchedToClusters, Set<Track> uniquelyMatchedTracks, Set<Track> ambiguouslyMatchedTracks, List<Track> tweakedTracks, Set<Cluster> seeds, List<Track> tracksSortedByMomentum, Map<Track, Cluster> tweakedTracksMatchedToClusters) {
 	System.out.println("There were "+trackList.size()+" tracks in the event. Of these, "+unmatchedTracks.size()+" were unmatched and "+tracksMatchedToClusters.size()+" were matched. Of the track matches, "+uniquelyMatchedTracks.size()+" were unique and "+ambiguouslyMatchedTracks.size()+" were ambiguous. After tweaking, there were "+tweakedTracks.size()+" tracks. The event contains "+seeds.size()+" seeds.");
 	System.out.println("Here are the "+unmatchedTracks.size()+" unmatched tracks:");
 	for (Track tr : unmatchedTracks) {
CVSspam 0.2.8