Print

Print


Author: [log in to unmask]
Date: Wed Sep 28 12:20:18 2016
New Revision: 4504

Log: (empty)

Added:
    java/trunk/steering-files/src/main/resources/org/hps/steering/production/FEEFilter_2pt3.lcsim
    java/trunk/steering-files/src/main/resources/org/hps/steering/production/MollerCandidateFilter_2pt3.lcsim
    java/trunk/steering-files/src/main/resources/org/hps/steering/production/V0CandidateFilter_2pt3.lcsim

Added: java/trunk/steering-files/src/main/resources/org/hps/steering/production/FEEFilter_2pt3.lcsim
 =============================================================================
--- java/trunk/steering-files/src/main/resources/org/hps/steering/production/FEEFilter_2pt3.lcsim	(added)
+++ java/trunk/steering-files/src/main/resources/org/hps/steering/production/FEEFilter_2pt3.lcsim	Wed Sep 28 12:20:18 2016
@@ -0,0 +1,26 @@
+<lcsim xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" 
+       xs:noNamespaceSchemaLocation="http://www.lcsim.org/schemas/lcsim/1.0/lcsim.xsd">
+    <control>
+        <printDriverStatistics>true</printDriverStatistics>
+    </control>
+    <execute>
+        <driver name="EventMarkerDriver"/>
+        <driver name="FEEskim"/>
+        <driver name="Writer"/>
+    </execute>
+    <drivers>
+        <driver name="EventMarkerDriver" type="org.lcsim.job.EventMarkerDriver">
+            <eventInterval>1000</eventInterval>
+        </driver>
+        <!-- Driver to find FEE events -->
+       <driver name="FEEskim" type="org.hps.recon.filtering.FEEFilterDriver">
+       	<clusterCut>1.3</clusterCut>
+       	<!-- Seed cut causes inefficiency near corners of crystals.  Don't include it -->
+       	<seedCut>0</seedCut>
+        </driver>
+        <!-- Driver to write output slcio file -->
+        <driver name="Writer" type="org.lcsim.util.loop.LCIODriver">
+            <outputFilePath>${outputFile}.slcio</outputFilePath>
+        </driver>
+    </drivers>
+</lcsim>

Added: java/trunk/steering-files/src/main/resources/org/hps/steering/production/MollerCandidateFilter_2pt3.lcsim
 =============================================================================
--- java/trunk/steering-files/src/main/resources/org/hps/steering/production/MollerCandidateFilter_2pt3.lcsim	(added)
+++ java/trunk/steering-files/src/main/resources/org/hps/steering/production/MollerCandidateFilter_2pt3.lcsim	Wed Sep 28 12:20:18 2016
@@ -0,0 +1,73 @@
+<lcsim xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" 
+       xs:noNamespaceSchemaLocation="http://www.lcsim.org/schemas/lcsim/1.0/lcsim.xsd">
+    <control>
+        <printDriverStatistics>true</printDriverStatistics>
+    </control>
+    <execute>
+        <driver name="EventMarkerDriver"/>
+        <!-- <driver name="EventFlagFilter"/> -->
+        <driver name="StripEvent"/>
+        <driver name="Writer"/>
+    </execute>
+    <drivers>
+        <!-- Driver to give some feedback on progress -->
+        <driver name="EventMarkerDriver"
+                type="org.lcsim.job.EventMarkerDriver">
+            <eventInterval>1000</eventInterval>
+        </driver>
+        <!-- Driver to reject "bad" events -->
+        <driver name="EventFlagFilter" 
+                type="org.hps.recon.filtering.EventFlagFilter">
+        </driver>
+        <!-- Driver to strip events -->
+       <driver name="StripEvent"
+                type="org.hps.recon.filtering.MollerCandidateFilter">
+              <!-- Setting the tight constraint requires two electrons (track+cluster) -->
+              <tightConstraint>true</tightConstraint>
+              <!-- Name of the Moller Candidate Collection of ReconstriuctedParticles -->
+              <mollerCandidateCollectionName>TargetConstrainedMollerCandidates</mollerCandidateCollectionName>
+              <!-- Maximum momentum of each electron, used to remove full energy electrons -->
+              <mollerMomentumMax>1.85</mollerMomentumMax>
+              <!-- Sum of the two electron momenta should equal the beam energy, this is the low cut -->
+              <mollerMomentumSumMin>1.85</mollerMomentumSumMin>
+              <!-- Sum of the two electron momenta should equal the beam energy, this is the high cut -->
+               <mollerMomentumSumMax>2.85</mollerMomentumSumMax>
+              <!-- Following is for the calorimeter-only cuts -->
+              <!-- Name of Moller Candidate Calorimeter Cluster Collection Name-->
+              <mollerCandidateClusterCollectionName >EcalClustersCorr</mollerCandidateClusterCollectionName>
+              <!-- Minimum value for the Cluster time [ns] -->
+              <clusterTimeLo >54. </clusterTimeLo>
+              <!-- Maximum value for the Cluster time [ns] -->
+              <clusterTimeHi >  62. </clusterTimeHi>
+              <!-- Maximum value for the Cluster x position [mm]-->
+              <clusterMaxX > 0. </clusterMaxX>
+              <!-- Cluster Pair cuts -->
+              <!-- Minimum value for the Cluster x position sum [mm]-->
+              <clusterXSumLo > -175. </clusterXSumLo>
+              <!-- Maximum value for the Cluster x position sum [mm]-->
+              <clusterXSumHi > -145. </clusterXSumHi>
+              <!-- Minimum value for the Cluster x position difference [mm]-->
+              <clusterXDiffLo > -80. </clusterXDiffLo>
+              <!-- Maximum value for the Cluster x position difference [mm]-->
+              <clusterXDiffHi > 80. </clusterXDiffHi>
+              <!-- Minimum value for the Cluster Energy sum [GeV]-->
+              <clusterESumLo > 0.5 </clusterESumLo> 
+              <!-- Maximum value for the Cluster Energy sum [GeV]-->
+              <clusterESumHi > 2.4 </clusterESumHi>
+              <!-- Minimum value for the Cluster Energy difference [GeV]-->
+              <clusterEDiffLo > -0.65 </clusterEDiffLo>
+              <!-- Maximum value for the Cluster Energy difference [GeV]-->
+              <clusterEDiffHi > 0.65 </clusterEDiffHi>
+
+              <!-- Maximum difference in the ECal cluster times -->
+              <clusterDeltaTimeCut>2.5</clusterDeltaTimeCut>
+              <!-- Setting this true keeps ALL events containing EPICS data -->
+              <keepEpicsDataEvents>true</keepEpicsDataEvents>
+        </driver>
+        <!-- Driver to write output slcio file -->
+        <driver name="Writer"
+                type="org.lcsim.util.loop.LCIODriver">
+            <outputFilePath>${outputFile}.slcio</outputFilePath>
+        </driver>
+    </drivers>
+</lcsim>

Added: java/trunk/steering-files/src/main/resources/org/hps/steering/production/V0CandidateFilter_2pt3.lcsim
 =============================================================================
--- java/trunk/steering-files/src/main/resources/org/hps/steering/production/V0CandidateFilter_2pt3.lcsim	(added)
+++ java/trunk/steering-files/src/main/resources/org/hps/steering/production/V0CandidateFilter_2pt3.lcsim	Wed Sep 28 12:20:18 2016
@@ -0,0 +1,36 @@
+<lcsim xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" 
+       xs:noNamespaceSchemaLocation="http://www.lcsim.org/schemas/lcsim/1.0/lcsim.xsd">
+    <control>
+        <printDriverStatistics>true</printDriverStatistics>
+    </control>
+    <execute>
+        <driver name="EventMarkerDriver"/>
+        <!--<driver name="EventFlagFilter"/>  -->
+        <driver name="StripEvent"/>
+        <driver name="Writer"/>
+    </execute>
+    <drivers>
+        <!-- Driver to give some feedback on progress -->
+        <driver name="EventMarkerDriver"
+                type="org.lcsim.job.EventMarkerDriver">
+            <eventInterval>1000</eventInterval>
+        </driver>
+        <!-- Driver to reject "bad" events -->
+        <driver name="EventFlagFilter" 
+                type="org.hps.recon.filtering.EventFlagFilter">
+        </driver>
+        <!-- Driver to strip events -->
+        <driver name="StripEvent"
+                type="org.hps.recon.filtering.V0CandidateFilter">
+              <!-- Setting this true keeps ALL events containing EPICS data -->
+              <keepEpicsDataEvents>true</keepEpicsDataEvents>
+              <trackPMax>1.95</trackPMax>
+              <V0PMax>3.05</V0PMax>
+        </driver>
+        <!-- Driver to write output slcio file -->
+        <driver name="Writer"
+                type="org.lcsim.util.loop.LCIODriver">
+            <outputFilePath>${outputFile}.slcio</outputFilePath>
+        </driver>
+    </drivers>
+</lcsim>