Commit in lcsim/src/org/lcsim/recon/cluster/util on MAIN
Clusterer.java+25added 1.1
Trivial clusterer interface

lcsim/src/org/lcsim/recon/cluster/util
Clusterer.java added at 1.1
diff -N Clusterer.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ Clusterer.java	23 May 2006 19:47:26 -0000	1.1
@@ -0,0 +1,25 @@
+/*
+ * Clusterer.java
+ *
+ * Created on April 5, 2006, 9:32 AM
+ *
+ * Interface for creating cluster lists from CalorimeterHit lists
+ *
+ * Ron Cassell
+ */
+
+package org.lcsim.recon.cluster.util;
+
+import org.lcsim.event.CalorimeterHit;
+import org.lcsim.event.Cluster;
+import java.util.*; 
+
+/**
+ *
+ * @author cassell
+ */
+public interface Clusterer
+{
+   public List<Cluster> createClusters(List<CalorimeterHit> hits);
+   public List<Cluster> createClusters(Map<Long,CalorimeterHit> map);
+}
CVSspam 0.2.8