|
[Rivet-svn] r3352 - in trunk: data/anainfo data/plotinfo data/refdata src/Analysesblackhole at projects.hepforge.org blackhole at projects.hepforge.orgWed Sep 14 10:53:53 BST 2011
Author: buckley Date: Wed Sep 14 10:53:52 2011 New Revision: 3352 Log: Adding ATLAS Z pT measurement, and a small fix to MC_VH2BB Modified: trunk/data/anainfo/Makefile.am trunk/data/plotinfo/Makefile.am trunk/data/refdata/Makefile.am trunk/src/Analyses/MC_VH2BB.cc trunk/src/Analyses/Makefile.am Modified: trunk/data/anainfo/Makefile.am ============================================================================== --- trunk/data/anainfo/Makefile.am Wed Sep 14 09:55:10 2011 (r3351) +++ trunk/data/anainfo/Makefile.am Wed Sep 14 10:53:52 2011 (r3352) @@ -26,6 +26,7 @@ ATLAS_2011_S9120807.info \ ATLAS_2011_S9126244.info \ ATLAS_2011_S9128077.info \ + ATLAS_2011_S9131140.info \ BELLE_2006_S6265367.info \ CDF_1988_S1865951.info \ CDF_1990_S2089246.info \ Modified: trunk/data/plotinfo/Makefile.am ============================================================================== --- trunk/data/plotinfo/Makefile.am Wed Sep 14 09:55:10 2011 (r3351) +++ trunk/data/plotinfo/Makefile.am Wed Sep 14 10:53:52 2011 (r3352) @@ -21,6 +21,7 @@ ATLAS_2011_S9120807.plot \ ATLAS_2011_S9126244.plot \ ATLAS_2011_S9128077.plot \ + ATLAS_2011_S9131140.plot \ CDF_1988_S1865951.plot \ CDF_1990_S2089246.plot \ CDF_1993_S2742446.plot \ Modified: trunk/data/refdata/Makefile.am ============================================================================== --- trunk/data/refdata/Makefile.am Wed Sep 14 09:55:10 2011 (r3351) +++ trunk/data/refdata/Makefile.am Wed Sep 14 10:53:52 2011 (r3352) @@ -25,6 +25,7 @@ ATLAS_2011_S9120807.aida \ ATLAS_2011_S9126244.aida \ ATLAS_2011_S9128077.aida \ + ATLAS_2011_S9131140.aida \ CMS_2010_S8547297.aida \ CMS_2010_S8656010.aida \ CMS_2011_S8884919.aida \ Modified: trunk/src/Analyses/MC_VH2BB.cc ============================================================================== --- trunk/src/Analyses/MC_VH2BB.cc Wed Sep 14 09:55:10 2011 (r3351) +++ trunk/src/Analyses/MC_VH2BB.cc Wed Sep 14 10:53:52 2011 (r3352) @@ -226,10 +226,11 @@ _h_jet_VBbb_Delta_R->fill(deltaRVH, weight); // Calculate boost angles - const vector<double> boostAngles = angularCookbook(jet1.momentum(), jet2.momentum(), v.momentum()); - _h_jet_bVB_angle_Hframe->fill(boostAngles[0], weight); - _h_jet_bb_angle_Hframe->fill(boostAngles[1], weight); + const vector<double> angles = boostAngles(jet1.momentum(), jet2.momentum(), v.momentum()); + _h_jet_bVB_angle_Hframe->fill(angles[0], weight); + _h_jet_bb_angle_Hframe->fill(angles[1], weight); } + } } } Modified: trunk/src/Analyses/Makefile.am ============================================================================== --- trunk/src/Analyses/Makefile.am Wed Sep 14 09:55:10 2011 (r3351) +++ trunk/src/Analyses/Makefile.am Wed Sep 14 10:53:52 2011 (r3352) @@ -57,7 +57,8 @@ ATLAS_2011_S9002537.cc \ ATLAS_2011_S9120807.cc \ ATLAS_2011_S9126244.cc \ - ATLAS_2011_S9128077.cc + ATLAS_2011_S9128077.cc \ + ATLAS_2011_S9131140.cc if ENABLE_UNVALIDATED RivetATLASAnalyses_la_SOURCES += \ ATLAS_2010_CONF_2010_049.cc \
More information about the Rivet-svn mailing list |