[Rivet-svn] r1720 - in trunk: data/anainfo data/plotinfo src/Analyses

blackhole at projects.hepforge.org blackhole at projects.hepforge.org
Thu Jul 30 13:33:43 BST 2009


Author: holsch
Date: Thu Jul 30 13:33:43 2009
New Revision: 1720

Log:
Adding UA5 analysis where the correlation strength between the number of particles in different eta intervals is being measured. Plots for this analysis as well as the runconditions used for their creation can be found on http://eeh06.physik.hu-berlin.de/~hschulz/Rivet/Validation/UA5_1988_S186751. Maybe someone could check the implementation and find a better solution for the calculation of the correlation coefficients. Currently there are 15 vector filled with integers (the number of charged particles in a certain eta region) per event, leading to e.g 15 Million integers that have to be stored if 1000000 events are generated. The histograms are filled with dummy entries and eventually get scaled to the correlation strength in the finalize method. It should be noted that the signal processing does not work here meaning that exiting the event loop by e.g. CTRL-C does not produce an output.

Modified:
   trunk/data/anainfo/Makefile.am
   trunk/data/plotinfo/Makefile.am
   trunk/src/Analyses/Makefile.am
   trunk/src/Analyses/StdAnalyses.cc

Modified: trunk/data/anainfo/Makefile.am
==============================================================================
--- trunk/data/anainfo/Makefile.am	Tue Jul 28 17:11:42 2009	(r1719)
+++ trunk/data/anainfo/Makefile.am	Thu Jul 30 13:33:43 2009	(r1720)
@@ -49,5 +49,6 @@
   PDG_HADRON_MULTIPLICITIES_RATIOS.info \
   STAR_2006_S6870392.info \
   STAR_2008_S7993412.info \
-  UA5_1989_S1926373.info \ 
+  UA5_1988_S1867512.info \
+  UA5_1989_S1926373.info \
   ZEUS_2001_S4815815.info 

Modified: trunk/data/plotinfo/Makefile.am
==============================================================================
--- trunk/data/plotinfo/Makefile.am	Tue Jul 28 17:11:42 2009	(r1719)
+++ trunk/data/plotinfo/Makefile.am	Thu Jul 30 13:33:43 2009	(r1720)
@@ -49,4 +49,5 @@
   STAR_2006_S6870392.plot \
   STAR_2008_S7993412.plot \
   ZEUS_2001_S4815815.plot \
+  UA5_1988_S1867512.plot \
   UA5_1989_S1926373.plot

Modified: trunk/src/Analyses/Makefile.am
==============================================================================
--- trunk/src/Analyses/Makefile.am	Tue Jul 28 17:11:42 2009	(r1719)
+++ trunk/src/Analyses/Makefile.am	Thu Jul 30 13:33:43 2009	(r1720)
@@ -52,6 +52,7 @@
     MC_LHC_LEADINGJETS.cc \
     STAR_2006_S6870392.cc \
     STAR_2008_S7993412.cc \
+    UA5_1988_S1867512.cc \
     UA5_1989_S1926373.cc
     #STAR_2009_UE_HELEN.cc
     #OPAL_2004_S6132243.cc 

Modified: trunk/src/Analyses/StdAnalyses.cc
==============================================================================
--- trunk/src/Analyses/StdAnalyses.cc	Tue Jul 28 17:11:42 2009	(r1719)
+++ trunk/src/Analyses/StdAnalyses.cc	Thu Jul 30 13:33:43 2009	(r1720)
@@ -64,6 +64,7 @@
 //#include "Rivet/Analyses/STAR_2009_UE_HELEN.hh"
 
 // UA5
+#include "Rivet/Analyses/UA5_1988_S1867512.hh"
 #include "Rivet/Analyses/UA5_1989_S1926373.hh"
 
 // MC validation
@@ -144,6 +145,7 @@
     //fns["STAR_2009_UE_HELEN"] = Rivet::STAR_2009_UE_HELEN::create;
 
     // UA5
+    fns["UA5_1988_S1867512"] = Rivet::UA5_1988_S1867512::create;
     fns["UA5_1989_S1926373"] = Rivet::UA5_1989_S1926373::create;
 
     // General


More information about the Rivet-svn mailing list