LISTSERV mailing list manager LISTSERV 16.5

Help for HPS-SVN Archives


HPS-SVN Archives

HPS-SVN Archives


HPS-SVN@LISTSERV.SLAC.STANFORD.EDU


View:

Message:

[

First

|

Previous

|

Next

|

Last

]

By Topic:

[

First

|

Previous

|

Next

|

Last

]

By Author:

[

First

|

Previous

|

Next

|

Last

]

Font:

Proportional Font

LISTSERV Archives

LISTSERV Archives

HPS-SVN Home

HPS-SVN Home

HPS-SVN  May 2015

HPS-SVN May 2015

Subject:

r2986 - /java/trunk/analysis/src/main/java/org/hps/analysis/trigger/TriggerDiagnosticDriver.java

From:

[log in to unmask]

Reply-To:

Notification of commits to the hps svn repository <[log in to unmask]>

Date:

Sat, 16 May 2015 06:50:19 -0000

Content-Type:

text/plain

Parts/Attachments:

Parts/Attachments

text/plain (270 lines)

Author: [log in to unmask]
Date: Fri May 15 23:50:06 2015
New Revision: 2986

Log:
Updated trigger diagnostics to output a plot of trigger and cluster efficiency over time. This can be used to track changes in efficiency over the course of a run. Also added functionality to produce LCIO collections that contain clusters or cluster pairs that are candidates for having caused the trigger. Note that this is not fully functional yet and does not appear to be writing out the results in save LCIO files. Fixes are being investigated.

Modified:
    java/trunk/analysis/src/main/java/org/hps/analysis/trigger/TriggerDiagnosticDriver.java

Modified: java/trunk/analysis/src/main/java/org/hps/analysis/trigger/TriggerDiagnosticDriver.java
 =============================================================================
--- java/trunk/analysis/src/main/java/org/hps/analysis/trigger/TriggerDiagnosticDriver.java	(original)
+++ java/trunk/analysis/src/main/java/org/hps/analysis/trigger/TriggerDiagnosticDriver.java	Fri May 15 23:50:06 2015
@@ -1,5 +1,6 @@
 package org.hps.analysis.trigger;
 
+import hep.aida.ICloud2D;
 import hep.aida.IHistogram1D;
 import hep.aida.IHistogram2D;
 
@@ -45,6 +46,9 @@
 import org.lcsim.event.Cluster;
 import org.lcsim.event.EventHeader;
 import org.lcsim.event.GenericObject;
+import org.lcsim.event.LCRelation;
+import org.lcsim.event.base.MyLCRelation;
+import org.lcsim.lcio.LCIOConstants;
 import org.lcsim.util.Driver;
 import org.lcsim.util.aida.AIDA;
 
@@ -54,12 +58,15 @@
 	private String bankCollectionName = "TriggerBank";
 	private String clusterCollectionName = "EcalClusters";
 	private String diagnosticCollectionName = "DiagnosticSnapshot";
+	private static final int clusterCollectionFlag = 1 << LCIOConstants.CLBIT_HITS;
+	private String[] singlesCandidateCollectionName = { "Singles0TriggerCandidates", "Singles1TriggerCandidates" };
+	private String[] pairCandidateCollectionName = { "Pair0TriggerCandidates", "Pair1TriggerCandidates" };
 	
 	// Store the lists of parsed objects.
 	private TIData tiBank;
 	private SSPData sspBank;
+	private List<SSPCluster> sspClusters;
 	private List<Cluster> reconClusters = new ArrayList<Cluster>();
-	private List<SSPCluster> sspClusters;
 	private List<List<PairTrigger<Cluster[]>>> reconPairsTriggers = new ArrayList<List<PairTrigger<Cluster[]>>>(2);
 	private List<List<PairTrigger<SSPCluster[]>>> sspPairsTriggers = new ArrayList<List<PairTrigger<SSPCluster[]>>>(2);
 	private List<List<SinglesTrigger<Cluster>>> reconSinglesTriggers = new ArrayList<List<SinglesTrigger<Cluster>>>(2);
@@ -93,6 +100,10 @@
 	private RunDiagStats localStats = new RunDiagStats();
 	private RunDiagStats globalStats = new RunDiagStats();
     
+	// Track which clusters/pairs are trigger candidates.
+	private List<List<Cluster>> singlesCandidates = new ArrayList<List<Cluster>>(2);
+	private List<List<LCRelation>> pairCandidates = new ArrayList<List<LCRelation>>(2);
+	
     // Verbose settings.
     private boolean clusterFail = false;
     private boolean singlesEfficiencyFail = false;
@@ -136,56 +147,63 @@
 	private AIDA aida = AIDA.defaultInstance();
 	private IHistogram1D[][] clusterHitPlot = {
 			{
-				aida.histogram1D("cluster/Recon Cluster Hit Count (All)",     9, 0.5, 9.5),
-				aida.histogram1D("cluster/Recon Cluster Hit Count (Matched)", 9, 0.5, 9.5),
-				aida.histogram1D("cluster/Recon Cluster Hit Count (Failed)",  9, 0.5, 9.5)
+				aida.histogram1D("Clustering/Recon Cluster Hit Count (All)",     9, 0.5, 9.5),
+				aida.histogram1D("Clustering/Recon Cluster Hit Count (Matched)", 9, 0.5, 9.5),
+				aida.histogram1D("Clustering/Recon Cluster Hit Count (Failed)",  9, 0.5, 9.5)
 			},
 			{
-				aida.histogram1D("cluster/SSP Cluster Hit Count (All)",     9, 0.5, 9.5),
-				aida.histogram1D("cluster/SSP Cluster Hit Count (Matched)", 9, 0.5, 9.5),
-				aida.histogram1D("cluster/SSP Cluster Hit Count (Failed)",  9, 0.5, 9.5)
+				aida.histogram1D("Clustering/SSP Cluster Hit Count (All)",     9, 0.5, 9.5),
+				aida.histogram1D("Clustering/SSP Cluster Hit Count (Matched)", 9, 0.5, 9.5),
+				aida.histogram1D("Clustering/SSP Cluster Hit Count (Failed)",  9, 0.5, 9.5)
 			}
 	};
 	private IHistogram1D[][] clusterEnergyPlot = {
 			{
-				aida.histogram1D("cluster/Recon Cluster Energy (All)",     300, 0.0, 3.0),
-				aida.histogram1D("cluster/Recon Cluster Energy (Matched)", 300, 0.0, 3.0),
-				aida.histogram1D("cluster/Recon Cluster Energy (Failed)",  300, 0.0, 3.0)
+				aida.histogram1D("Clustering/Recon Cluster Energy (All)",     300, 0.0, 3.0),
+				aida.histogram1D("Clustering/Recon Cluster Energy (Matched)", 300, 0.0, 3.0),
+				aida.histogram1D("Clustering/Recon Cluster Energy (Failed)",  300, 0.0, 3.0)
 			},
 			{
-				aida.histogram1D("cluster/SSP Cluster Energy (All)",     300, 0.0, 3.0),
-				aida.histogram1D("cluster/SSP Cluster Energy (Matched)", 300, 0.0, 3.0),
-				aida.histogram1D("cluster/SSP Cluster Energy (Failed)",  300, 0.0, 3.0)
+				aida.histogram1D("Clustering/SSP Cluster Energy (All)",     300, 0.0, 3.0),
+				aida.histogram1D("Clustering/SSP Cluster Energy (Matched)", 300, 0.0, 3.0),
+				aida.histogram1D("Clustering/SSP Cluster Energy (Failed)",  300, 0.0, 3.0)
 			}
 	};
 	private IHistogram1D[][] clusterTimePlot = {
 			{
-				aida.histogram1D("cluster/Recon Cluster Time (All)",     115, 0, 460),
-				aida.histogram1D("cluster/Recon Cluster Time (Matched)", 115, 0, 460),
-				aida.histogram1D("cluster/Recon Cluster Time (Failed)",  115, 0, 460)
+				aida.histogram1D("Clustering/Recon Cluster Time (All)",     115, 0, 460),
+				aida.histogram1D("Clustering/Recon Cluster Time (Matched)", 115, 0, 460),
+				aida.histogram1D("Clustering/Recon Cluster Time (Failed)",  115, 0, 460)
 			},
 			{
-				aida.histogram1D("cluster/SSP Cluster Time (All)",     115, 0, 460),
-				aida.histogram1D("cluster/SSP Cluster Time (Matched)", 115, 0, 460),
-				aida.histogram1D("cluster/SSP Cluster Time (Failed)",  115, 0, 460)
+				aida.histogram1D("Clustering/SSP Cluster Time (All)",     115, 0, 460),
+				aida.histogram1D("Clustering/SSP Cluster Time (Matched)", 115, 0, 460),
+				aida.histogram1D("Clustering/SSP Cluster Time (Failed)",  115, 0, 460)
 			}
 	};
 	private IHistogram2D[][] clusterPositionPlot = {
 			{
-				aida.histogram2D("cluster/Recon Cluster Position (All)",     47, -23.5, 23.5, 11, -5.5, 5.5),
-				aida.histogram2D("cluster/Recon Cluster Position (Matched)", 47, -23.5, 23.5, 11, -5.5, 5.5),
-				aida.histogram2D("cluster/Recon Cluster Position (Failed)",  47, -23.5, 23.5, 11, -5.5, 5.5)
+				aida.histogram2D("Clustering/Recon Cluster Position (All)",     47, -23.5, 23.5, 11, -5.5, 5.5),
+				aida.histogram2D("Clustering/Recon Cluster Position (Matched)", 47, -23.5, 23.5, 11, -5.5, 5.5),
+				aida.histogram2D("Clustering/Recon Cluster Position (Failed)",  47, -23.5, 23.5, 11, -5.5, 5.5)
 			},
 			{
-				aida.histogram2D("cluster/SSP Cluster Position (All)",     47, -23.5, 23.5, 11, -5.5, 5.5),
-				aida.histogram2D("cluster/SSP Cluster Position (Matched)", 47, -23.5, 23.5, 11, -5.5, 5.5),
-				aida.histogram2D("cluster/SSP Cluster Position (Failed)",  47, -23.5, 23.5, 11, -5.5, 5.5)
+				aida.histogram2D("Clustering/SSP Cluster Position (All)",     47, -23.5, 23.5, 11, -5.5, 5.5),
+				aida.histogram2D("Clustering/SSP Cluster Position (Matched)", 47, -23.5, 23.5, 11, -5.5, 5.5),
+				aida.histogram2D("Clustering/SSP Cluster Position (Failed)",  47, -23.5, 23.5, 11, -5.5, 5.5)
 			}
 	};
 	private IHistogram2D[] energyhitDiffPlot = {
-		aida.histogram2D("cluster/Recon-SSP Energy-Hit Difference (All)",     21, -0.010, 0.010, 6, -3, 3),
-		aida.histogram2D("cluster/Recon-SSP Energy-Hit Difference (Matched)", 21, -0.010, 0.010, 6, -3, 3),
-		aida.histogram2D("cluster/Recon-SSP Energy-Hit Difference (Failed)",  21, -0.010, 0.010, 6, -3, 3)
+		aida.histogram2D("Clustering/Recon-SSP Energy-Hit Difference (All)",     21, -0.010, 0.010, 6, -3, 3),
+		aida.histogram2D("Clustering/Recon-SSP Energy-Hit Difference (Matched)", 21, -0.010, 0.010, 6, -3, 3),
+		aida.histogram2D("Clustering/Recon-SSP Energy-Hit Difference (Failed)",  21, -0.010, 0.010, 6, -3, 3)
+	};
+	private ICloud2D[] efficiencyTimeHist = {
+			aida.cloud2D("Clustering/Cluster Efficiency vs. Time"),
+			aida.cloud2D("Singles Trigger 0/Cluster Efficiency vs. Time"),
+			aida.cloud2D("Singles Trigger 1/Cluster Efficiency vs. Time"),
+			aida.cloud2D("Pair Trigger 0/Cluster Efficiency vs. Time"),
+			aida.cloud2D("Pair Trigger 1/Cluster Efficiency vs. Time")
 	};
 	
 	/**
@@ -355,6 +373,14 @@
 			}
 		}
 		
+		// Reset the candidate cluster lists.
+		singlesCandidates.clear();
+		singlesCandidates.add(new ArrayList<Cluster>());
+		singlesCandidates.add(new ArrayList<Cluster>());
+		pairCandidates.clear();
+		pairCandidates.add(new ArrayList<LCRelation>());
+		pairCandidates.add(new ArrayList<LCRelation>());
+		
 		// Increment the total event count.
 		localStats.sawEvent(event.getTimeStamp());
 		globalStats.sawEvent(event.getTimeStamp());
@@ -633,9 +659,41 @@
 			// Push the snapshot to the data stream.
 			event.put(diagnosticCollectionName, snapshotList);
 			
+			// Record the efficiencies in this time snapshot.
+			double[] efficiency = new double[5];
+			efficiency[0] = 1.0 * localStats.getClusterStats().getMatches()
+					/ localStats.getClusterStats().getReconClusterCount();
+			efficiency[1] = 1.0 * localStats.getTriggerStats().getSingles0Stats().getMatchedReconSimulatedTriggers()
+					/ localStats.getTriggerStats().getSingles0Stats().getReconSimulatedTriggers();
+			efficiency[2] = 1.0 * localStats.getTriggerStats().getSingles1Stats().getMatchedReconSimulatedTriggers()
+					/ localStats.getTriggerStats().getSingles1Stats().getReconSimulatedTriggers();
+			efficiency[3] = 1.0 * localStats.getTriggerStats().getPair0Stats().getMatchedReconSimulatedTriggers()
+					/ localStats.getTriggerStats().getPair0Stats().getReconSimulatedTriggers();
+			efficiency[4] = 1.0 * localStats.getTriggerStats().getPair1Stats().getMatchedReconSimulatedTriggers()
+					/ localStats.getTriggerStats().getPair1Stats().getReconSimulatedTriggers();
+			
+			// Get the time for the current snapshot. This is the total
+			// run time before the snapshot plus half of the snapshot.
+			long time = globalStats.getDuration() - (localStats.getDuration() / 2);
+			
+			// Add them to the appropriate cloud plot.
+			for(int i = 0; i < 5; i++) { efficiencyTimeHist[i].fill(time, efficiency[i]); }
+			
 			// Clear the local statistical data.
 			localStats.clear();
 		}
+		
+		
+		
+		// ==========================================================
+		// ==== Write the Candidate Triggers ========================
+		// ==========================================================
+		
+		// Write the candidates to a collection.
+		event.put(pairCandidateCollectionName[0], pairCandidates.get(0), LCRelation.class, 0);
+		event.put(pairCandidateCollectionName[1], pairCandidates.get(1), LCRelation.class, 0);
+		event.put(singlesCandidateCollectionName[0], singlesCandidates.get(0), Cluster.class, clusterCollectionFlag);
+		event.put(singlesCandidateCollectionName[1], singlesCandidates.get(1), Cluster.class, clusterCollectionFlag);
 	}
 
 	public void setPrintResultsEveryNEvents(int n) {
@@ -1706,6 +1764,13 @@
 				trigger.setStateClusterEnergyHigh(passClusterHigh);
 				trigger.setStateHitCount(passHitCount);
 				
+				// If all the trigger cuts passed, plot this trigger
+				// in the "triggered" plots.
+				if(trigger.getTriggerState()) {
+					globalTriggerPlots.passedTrigger(trigger);
+					singlesCandidates.get(triggerNum).add(trigger.getTriggerSource());
+				}
+				
 				// A trigger will only be reported by the SSP if it
 				// passes all of the enabled cuts for that trigger.
 				// Check whether this trigger meets these conditions.
@@ -1715,12 +1780,6 @@
 					continue triggerLoop;
 				} if(singlesCutsEnabled[triggerNum][HIT_COUNT] && !trigger.getStateHitCount()) {
 					continue triggerLoop;
-				}
-				
-				// If all the trigger cuts passed, plot this trigger
-				// in the "triggered" plots.
-				if(trigger.getTriggerState()) {
-					globalTriggerPlots.passedTrigger(trigger);
 				}
 				
 				// Store the trigger.
@@ -1851,6 +1910,8 @@
 				// in the "triggered" plots.
 				if(trigger.getTriggerState()) {
 					globalTriggerPlots.passedTrigger(trigger);
+					LCRelation lcPair = new MyLCRelation(trigger.getTriggerSource()[0], trigger.getTriggerSource()[1]);
+					pairCandidates.get(triggerIndex).add(lcPair);
 				}
 				
 				// Add the trigger to the list.
@@ -1907,6 +1968,12 @@
 				trigger.setStateEnergySlope(passPairEnergySlope);
 				trigger.setStateCoplanarity(passPairCoplanarity);
 				trigger.setStateTimeCoincidence(passTimeCoincidence);
+				
+				// If all the trigger cuts passed, plot this trigger
+				// in the "triggered" plots.
+				if(trigger.getTriggerState()) {
+					globalTriggerPlots.passedTrigger(trigger);
+				}
 				
 				// A trigger will only be reported by the SSP if it
 				// passes all of the enabled cuts for that trigger.
@@ -1925,12 +1992,6 @@
 					continue pairTriggerLoop;
 				} if(pairCutsEnabled[triggerIndex][3 + COPLANARITY] && !trigger.getStateCoplanarity()) {
 					continue pairTriggerLoop;
-				}
-				
-				// If all the trigger cuts passed, plot this trigger
-				// in the "triggered" plots.
-				if(trigger.getTriggerState()) {
-					globalTriggerPlots.passedTrigger(trigger);
 				}
 				
 				// Add the trigger to the list.

Top of Message | Previous Page | Permalink

Advanced Options


Options

Log In

Log In

Get Password

Get Password


Search Archives

Search Archives


Subscribe or Unsubscribe

Subscribe or Unsubscribe


Archives

November 2017
August 2017
July 2017
January 2017
December 2016
November 2016
October 2016
September 2016
August 2016
July 2016
June 2016
May 2016
April 2016
March 2016
February 2016
January 2016
December 2015
November 2015
October 2015
September 2015
August 2015
July 2015
June 2015
May 2015
April 2015
March 2015
February 2015
January 2015
December 2014
November 2014
October 2014
September 2014
August 2014
July 2014
June 2014
May 2014
April 2014
March 2014
February 2014
January 2014
December 2013
November 2013

ATOM RSS1 RSS2



LISTSERV.SLAC.STANFORD.EDU

Secured by F-Secure Anti-Virus CataList Email List Search Powered by the LISTSERV Email List Manager

Privacy Notice, Security Notice and Terms of Use