[Rivet-svn] rivet: 9 new changesets

Rivet Mercurial rivet at projects.hepforge.org
Wed May 10 16:45:03 BST 2017


details:   https://rivet.hepforge.org/hg/rivet/rev/f8da56eb014c
branches:  release-2-5-x
changeset: 5758:f8da56eb014c
user:      Andy Buckley <andy at insectnation.org>
date:      Tue May 09 10:53:08 2017 +0100
description:
Fix ALICE_2012_I1116147 for pi0 and Lambda feed-down

details:   https://rivet.hepforge.org/hg/rivet/rev/7448bc1446a4
branches:  release-2-5-x
changeset: 5759:7448bc1446a4
user:      Andy Buckley <andy at insectnation.org>
date:      Tue May 09 10:56:22 2017 +0100
description:
Tidying

details:   https://rivet.hepforge.org/hg/rivet/rev/48c33481a4a6
branches:  release-2-5-x
changeset: 5760:48c33481a4a6
user:      Andy Buckley <andy at insectnation.org>
date:      Tue May 09 11:25:46 2017 +0100
description:
Oops

details:   https://rivet.hepforge.org/hg/rivet/rev/3312e60c7951
branches:  release-2-5-x
changeset: 5761:3312e60c7951
user:      Andy Buckley <andy at insectnation.org>
date:      Tue May 09 11:38:28 2017 +0100
description:
Adding EHS_1988_I265504 from Felix Riehn: charged-particle production in K+ p, pi+ p and pp interactions at 250 GeV/c.

details:   https://rivet.hepforge.org/hg/rivet/rev/7ff7163b5204
branches:  release-2-5-x
changeset: 5762:7ff7163b5204
user:      Andy Buckley <andy at insectnation.org>
date:      Tue May 09 11:56:11 2017 +0100
description:
Code tidying

details:   https://rivet.hepforge.org/hg/rivet/rev/62eea7d58141
branches:  release-2-5-x
changeset: 5763:62eea7d58141
user:      Andy Buckley <andy at insectnation.org>
date:      Tue May 09 12:29:20 2017 +0100
description:
Add CMS_2015_I1370682_PARTON, a partonic-top version of the CMS 7 TeV pseudotop ttbar differential cross-section analysis.

details:   https://rivet.hepforge.org/hg/rivet/rev/a41188b3c38d
branches:  release-2-5-x
changeset: 5764:a41188b3c38d
user:      Andy Buckley <andy at insectnation.org>
date:      Tue May 09 13:03:09 2017 +0100
description:
Add CMS_2015_I1380605, per-event yield of the highest transverse momentum charged particle and charged-particle jet.

details:   https://rivet.hepforge.org/hg/rivet/rev/be1846bc48e3
branches:  release-2-5-x
changeset: 5765:be1846bc48e3
user:      Andy Buckley <andy at insectnation.org>
date:      Wed May 10 15:03:56 2017 +0100
description:
Add CMS_2016_I1421646, CMS azimuthal decorrelations at 8 TeV.

details:   https://rivet.hepforge.org/hg/rivet/rev/21c4df91531d
branches:  release-2-5-x
changeset: 5766:21c4df91531d
user:      Andy Buckley <andy at insectnation.org>
date:      Wed May 10 16:41:40 2017 +0100
description:
Add CMS_2016_I1454211, boosted ttbar in pp collisions at sqrtS = 8 TeV.

diffs (truncated from 3880 to 50 lines):

--- a/.hgignore	Mon May 08 16:23:52 2017 +0100
+++ b/.hgignore	Wed May 10 16:41:40 2017 +0100
@@ -1,5 +1,5 @@
 ~$
-^run.*$
+^(anas|test|run).*$
 \.orig$
 \.(o|Po|lo|Plo|la|a|so|dylib|pyc|tar\.bz2|tar\.gz|fifo|hepmc)$
 ^config\.guess$
--- a/ChangeLog	Mon May 08 16:23:52 2017 +0100
+++ b/ChangeLog	Wed May 10 16:41:40 2017 +0100
@@ -1,3 +1,22 @@
+2017-05-10  Andy Buckley  <andy.buckley at cern.ch>
+
+	* Add CMS_2016_I1454211, boosted ttbar in pp collisions at sqrtS = 8 TeV.
+
+	* Add CMS_2016_I1421646, CMS azimuthal decorrelations at 8 TeV.
+
+2017-05-09  Andy Buckley  <andy.buckley at cern.ch>
+
+	* Add CMS_2015_I1380605, per-event yield of the highest transverse
+	momentum charged particle and charged-particle jet.
+
+	* Add CMS_2015_I1370682_PARTON, a partonic-top version of the CMS
+	7 TeV pseudotop ttbar differential cross-section analysis.
+
+	* Adding EHS_1988_I265504 from Felix Riehn: charged-particle
+	production in K+ p, pi+ p and pp interactions at 250 GeV/c.
+
+	* Fix ALICE_2012_I1116147 for pi0 and Lambda feed-down.
+
 2017-05-08  Andy Buckley  <andy.buckley at cern.ch>
 
 	* Add protection against leptons from QED FSR photon conversions
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/avglist	Wed May 10 16:41:40 2017 +0100
@@ -0,0 +1,14 @@
+#! /usr/bin/env python
+
+import sys
+argstr = "".join(sys.argv[1:])
+if argstr == "-":
+    valstr = sys.stdin.read()
+else:
+    valstr = argstr
+
+vals = [float(x) for x in valstr.split(",")]
+avgvals = []
+for i in range(len(vals)-1):
+    avgvals.append((vals[i]+vals[i+1])/2.)


More information about the Rivet-svn mailing list