Commit in java/trunk/integration-tests/src/test/java/org/hps on MAIN
SimpleMCReconTest.java+29added 1111
A simple example of running recon on MC data without using the readout simulation first.  (The ECAL drivers in the steering file need to be fixed up as only a clusterer is being run with no digi or calibration.)

java/trunk/integration-tests/src/test/java/org/hps
SimpleMCReconTest.java added at 1111
--- java/trunk/integration-tests/src/test/java/org/hps/SimpleMCReconTest.java	                        (rev 0)
+++ java/trunk/integration-tests/src/test/java/org/hps/SimpleMCReconTest.java	2014-09-30 02:18:23 UTC (rev 1111)
@@ -0,0 +1,29 @@
+package org.hps;
+
+import java.io.File;
+import java.net.URL;
+
+import junit.framework.TestCase;
+
+import org.lcsim.job.JobControlManager;
+import org.lcsim.util.Driver;
+import org.lcsim.util.cache.FileCache;
+import org.lcsim.util.test.TestUtil.TestOutputFile;
+
+public class SimpleMCReconTest extends TestCase {
+
+	public void testSimpleMCReconTest() throws Exception {
+		
+        new TestOutputFile(this.getClass().getSimpleName()).mkdir();
+		
+        FileCache cache = new FileCache();
+        File inputFile = cache.getCachedFile(new URL("http://www.lcsim.org/test/hps-java/SimpleMCReconTest.slcio"));
+		
+		JobControlManager job = new JobControlManager();
+        File outputFile = new TestOutputFile(this.getClass().getSimpleName() + File.separator + this.getClass().getSimpleName() + "_recon");
+        job.addVariableDefinition("outputFile", outputFile.getPath());
+        job.addInputFile(inputFile);
+        job.setup("/org/hps/steering/recon/SimpleMCRecon.lcsim");
+        job.run();
+	}	
+}
\ No newline at end of file
SVNspam 0.1