Print

Print


Commit in lcsim/src/org/lcsim/recon/ui on MAIN
ReconDriverCheatTracking.java+35added 1.1
Add driver to run PFA with cheat tracking

lcsim/src/org/lcsim/recon/ui
ReconDriverCheatTracking.java added at 1.1
diff -N ReconDriverCheatTracking.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ ReconDriverCheatTracking.java	8 Jun 2010 14:27:22 -0000	1.1
@@ -0,0 +1,35 @@
+package org.lcsim.recon.ui;
+import org.lcsim.digisim.DigiPackageDriver;
+import org.lcsim.recon.pfa.output.FlushReconstructedParticlesDriver;
+import org.lcsim.recon.pfa.structural.SetUpPFA;
+import org.lcsim.recon.util.CalInfoDriver;
+import org.lcsim.util.Driver;
+import org.lcsim.recon.cheater.CheatReconDriver;
+
+/**
+ * Top-level driver to run UI PFA reconstruction.
+ * 
+ * @author cassell
+ * @version $Id: ReconDriverCheatTracking.java,v 1.1 2010/06/08 14:27:22 cassell Exp $
+ */
+
+public class ReconDriverCheatTracking extends Driver
+{
+    /** 
+     * Constructor that sets up daughter drivers. 
+     */
+    public ReconDriverCheatTracking()
+    {
+        // Cash general calorimeter information
+        add(new CalInfoDriver());
+
+        // Run tracking.
+        add(new CheatReconDriver());
+	
+        // Set up and run PFA.
+        add(new SetUpPFA("FSReconTracks"));
+
+        // Output collections.
+        add(new FlushReconstructedParticlesDriver("DTreeReclusteredParticles", "ReconstructedParticles", "Clusters"));
+    }
+}
CVSspam 0.2.8