Print

Print


Commit in lcsim/src/org/lcsim/contrib/onoprien/tracking/digitization on MAIN
DigitizationDriver.java+2-181.10 -> 1.11
no message

lcsim/src/org/lcsim/contrib/onoprien/tracking/digitization
DigitizationDriver.java 1.10 -> 1.11
diff -u -r1.10 -r1.11
--- DigitizationDriver.java	9 Oct 2007 18:08:45 -0000	1.10
+++ DigitizationDriver.java	10 Oct 2007 18:47:31 -0000	1.11
@@ -35,16 +35,9 @@
  * On output, a map of {@link Sensor} objects to lists of created <tt>DigiTrackerHits</tt>
  * is added to the event, with a name supplied through a call to <tt>set("OUTPUT_MAP_NAME", name)</tt>
  * (type <tt>HashMap&lt;Sensor, ArrayList&lt;DigiTrackerHit&gt;&gt;</tt>).
- * <p>
- * Optionally, a list of pairs of <tt>SimTrackerHit</tt> groups and <tt>DigiTrackerHit</tt>
- * groups into which they were converted can be saved into the event for diagnostic purposes.
- * To do so, one has to set the name for this diagnostic collection (type
- * <tt>List&lt;Object[]&gt;</tt>, where each element of the list is an array with two
- * elements: <tt>List&lt;SimTrackerHit&gt;</tt> and <tt>List&lt;DigiTrackerHit&gt;</tt>) 
- * through a call to <tt>set("DIAGNOSTIC_LIST_NAME", name)</tt>. 
  *
  * @author D.Onoprienko
- * @version $Id: DigitizationDriver.java,v 1.10 2007/10/09 18:08:45 onoprien Exp $
+ * @version $Id: DigitizationDriver.java,v 1.11 2007/10/10 18:47:31 onoprien Exp $
  */
 public class DigitizationDriver extends Driver {
   
@@ -101,13 +94,7 @@
    *                 Default: <tt>null</tt> (all lists will be processed).<dd>
    * <dt>"OUTPUT_MAP_NAME"</dt> <dd>Name of ouitput collection of hist
    *             (type <tt>HashMap<Sensor, ArrayList<DigiTrackerHit>></tt>). 
-   *             Default: "DigiHits".<dd>
-   * <dt>"DIAGNOSTIC_LIST_NAME"</dt> <dd>If set, this name will be used to save a collection
-   *             of pairs of simulated hits lists corresponding to single sensor-particle
-   *             crossing, and digitized hits lists produced from them.
-   *             (type <tt>List&lt;Object[]&gt;</tt>, where each element of the list is an array with two
-   *             elements: <tt>List&lt;SimTrackerHit&gt;</tt> and <tt>List&lt;DigiTrackerHit&gt;</tt>). 
-   *             Default: <tt>null</tt>.</dd></dl>
+   *             Default: "DigiHits".<dd></dl>
    *
    * @param name   Name of parameter to be set. Case is ignored.
    * @param value  Value to be assigned to the parameter.
@@ -121,8 +108,6 @@
       _inListNames.add(name);
     } else if (name.equalsIgnoreCase("OUTPUT_MAP_NAME")) {
       _outMapName = value;
-    } else if (name.equalsIgnoreCase("DIAGNOSTIC_LIST_NAME")) {
-      _diagnosticListName = value;
     } else {
       throw new NoSuchParameterException(name, this.getClass());
     }
@@ -277,7 +262,6 @@
   
   protected ArrayList<String> _inListNames;
   protected String _outMapName;
-  protected String _diagnosticListName;
   
   protected double _distCut2;
 }
CVSspam 0.2.8