Print

Print


Commit in lcsim-contrib/src/main/java/org/lcsim/contrib/HansWenzel/DualCorrection on MAIN
DRResolutionDriver.java+29added 1.1


lcsim-contrib/src/main/java/org/lcsim/contrib/HansWenzel/DualCorrection
DRResolutionDriver.java added at 1.1
diff -N DRResolutionDriver.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ DRResolutionDriver.java	10 Dec 2009 19:55:06 -0000	1.1
@@ -0,0 +1,29 @@
+/*
+ *
+ * This Driver is used to run the module that checks that all the calibration using
+ * electrons and pions makes sense (e.g. peaks show up at the right spot).
+ * In addition the module estimate the energy resolution of the dual readout calorimeter
+ * for single particles. 
+ */
+package org.lcsim.contrib.HansWenzel.DualCorrection;
+import org.lcsim.contrib.HansWenzel.DualCorrection.DigiSim.CSClusdMJetDriver;
+import org.lcsim.util.Driver;
+
+/**
+ *
+ * @author wenzel
+ */
+public class DRResolutionDriver extends Driver {
+
+    public DRResolutionDriver() {
+
+        CSClusdMJetDriver digi = new CSClusdMJetDriver();
+        add(digi);
+        Resolution resol = new Resolution();
+        String aidafile = ("LCPhys_digis_pi-_all_resol.aida");
+        resol.setMyAIDAFilename(aidafile);
+        String asciifile = ("LCPhys_digis_pi-_all_resol.txt");
+        resol.setMyFilename(asciifile);
+        add(resol);
+    }
+}
CVSspam 0.2.8