Commit in lcsim/src/org/lcsim/recon/cluster/fixedcone on MAIN
FixedConeClusterDriver.java+20-21.3 -> 1.4
Change method names and add javadoc

lcsim/src/org/lcsim/recon/cluster/fixedcone
FixedConeClusterDriver.java 1.3 -> 1.4
diff -u -r1.3 -r1.4
--- FixedConeClusterDriver.java	18 Oct 2005 18:54:21 -0000	1.3
+++ FixedConeClusterDriver.java	19 Oct 2005 12:22:19 -0000	1.4
@@ -23,6 +23,8 @@
  * by a seed cell, and is iteratively updated as cells are added.
  * This version of the ClusterBuilder splits overlapping clusters
  * by assigning cells in the overlap region to the nearest cluster axis.
+ * By default only the "EcalBarrHits" collection is clustered and written
+ * to event with the name "EcalBarrHitsFixedConeClusters"
  *
  * @author Norman A. Graf
  * @version 1.0
@@ -105,16 +107,32 @@
       }
     }
     
-   public void setNameExt(String ext)
+  /**
+   * Set the extension of the hit collection name to use
+   * when writing the cluster collection to event
+   *
+   * @param   ext - the extension to add to the hit collection name
+   */
+   public void setClusterNameExtension(String ext)
    {
        _nameExt = ext;
    }
+  /**
+   * Set the names of the CalorimeterHit collections to cluster
+   *
+   * @param   names - an array of Strings containing the names of the
+   *                  hit collections to cluster
+   */
    public void setCollectionNames(String[] names)
    {
        _collNames = names;
        _doall = false;
    }
-   public void setAll()
+  /**
+   * Set a flag to cluster all CalorimeterHit collections
+   *
+   */
+   public void setClusterAllCollections()
    {
        _doall = true;
    }
CVSspam 0.2.8