Print

Print


Commit in lcsim/src/org/lcsim/recon/cluster/structural on MAIN
LikelihoodLinkDriver.java+3-21.1 -> 1.2
Use HitMap rather than HashMap

lcsim/src/org/lcsim/recon/cluster/structural
LikelihoodLinkDriver.java 1.1 -> 1.2
diff -u -r1.1 -r1.2
--- LikelihoodLinkDriver.java	1 Mar 2006 02:45:57 -0000	1.1
+++ LikelihoodLinkDriver.java	21 Jun 2006 00:45:02 -0000	1.2
@@ -12,6 +12,7 @@
 import org.lcsim.event.EventHeader;
 import org.lcsim.event.CalorimeterHit;
 import org.lcsim.recon.cluster.structural.likelihood.*;
+import org.lcsim.util.hitmap.HitMap;
 
 /**
  * Examine the components of large-scale clusters and
@@ -21,7 +22,7 @@
  * LikelihoodEvaluator.
  *
  * @author Mat Charles <[log in to unmask]>
- * @version $Id: LikelihoodLinkDriver.java,v 1.1 2006/03/01 02:45:57 mcharles Exp $
+ * @version $Id: LikelihoodLinkDriver.java,v 1.2 2006/06/21 00:45:02 mcharles Exp $
  */
 
 public class LikelihoodLinkDriver extends GenericStructuralDriver 
@@ -133,7 +134,7 @@
 	List<Cluster> tmpList = new Vector<Cluster>();
 	m_event.put(m_outputListOfSkeletonsName, tmpList);
 	// Output 2: HitMap with halo/unused hits
-	Map<Long,CalorimeterHit> tmpMap = new HashMap<Long,CalorimeterHit>();
+	HitMap tmpMap = new HitMap();
 	m_event.put(m_outputHitMapName, tmpMap);
     }
 
CVSspam 0.2.8