[Rivet-svn] rivet: 12 new changesets

Rivet Mercurial rivet at projects.hepforge.org
Mon Jun 19 15:45:22 BST 2017


details:   https://rivet.hepforge.org/hg/rivet/rev/3a2da92415c7
branches:  
changeset: 5839:3a2da92415c7
user:      Andy Buckley <andy at insectnation.org>
date:      Sat Jun 17 15:13:19 2017 +0100
description:
Partial reimplementation of std plugin building using buildplugin

details:   https://rivet.hepforge.org/hg/rivet/rev/90d113f47bdf
branches:  
changeset: 5840:90d113f47bdf
user:      Andy Buckley <andy at insectnation.org>
date:      Sat Jun 17 19:44:53 2017 +0100
description:
Reorganise install from all analysis plugin files in a plugin... subdir per analysis

details:   https://rivet.hepforge.org/hg/rivet/rev/710e08eeab16
branches:  
changeset: 5841:710e08eeab16
user:      Andy Buckley <andy at insectnation.org>
date:      Sat Jun 17 19:52:49 2017 +0100
description:
Cleaning... wait for 2.5.4 release before moving analysis files into new plugin subdirs

details:   https://rivet.hepforge.org/hg/rivet/rev/e928267d4806
branches:  
changeset: 5842:e928267d4806
user:      Andy Buckley <andy at insectnation.org>
date:      Sat Jun 17 20:04:20 2017 +0100
description:
Notes

details:   https://rivet.hepforge.org/hg/rivet/rev/84f30ab98af9
branches:  
changeset: 5843:84f30ab98af9
user:      Andy Buckley <andy at insectnation.org>
date:      Sun Jun 18 18:50:29 2017 +0100
description:
Merge with 2.5.4 release candidate

details:   https://rivet.hepforge.org/hg/rivet/rev/e93353082486
branches:  
changeset: 5844:e93353082486
user:      Andy Buckley <andy at insectnation.org>
date:      Sun Jun 18 20:37:40 2017 +0100
description:
Make -j1 imply no-subprocs

details:   https://rivet.hepforge.org/hg/rivet/rev/8593d6972c90
branches:  
changeset: 5845:8593d6972c90
user:      Andy Buckley <andy at insectnation.org>
date:      Sun Jun 18 21:11:11 2017 +0100
description:
Move analysis source files into new build structure

details:   https://rivet.hepforge.org/hg/rivet/rev/b22f65978e83
branches:  
changeset: 5846:b22f65978e83
user:      Andy Buckley <andy at insectnation.org>
date:      Sun Jun 18 22:08:28 2017 +0100
description:
Move data files into plugin dirs

details:   https://rivet.hepforge.org/hg/rivet/rev/0376a80ebfa2
branches:  
changeset: 5847:0376a80ebfa2
user:      Andy Buckley <andy at insectnation.org>
date:      Sun Jun 18 22:10:12 2017 +0100
description:
Add build changes to ChangeLog, and disable data/ subdirs

details:   https://rivet.hepforge.org/hg/rivet/rev/6cd314cb3972
branches:  
changeset: 5848:6cd314cb3972
user:      Andy Buckley <andy at insectnation.org>
date:      Mon Jun 19 08:30:14 2017 +0100
description:
Finesse buildplugin output

details:   https://rivet.hepforge.org/hg/rivet/rev/08849426d6f4
branches:  
changeset: 5849:08849426d6f4
user:      Andy Buckley <andy at insectnation.org>
date:      Mon Jun 19 08:45:28 2017 +0100
description:
Add a -v verbose flag that prints out the ~full build details

details:   https://rivet.hepforge.org/hg/rivet/rev/438f46606f94
branches:  
changeset: 5850:438f46606f94
user:      David Grellscheid <david.grellscheid at durham.ac.uk>
date:      Mon Jun 19 16:40:13 2017 +0200
description:
Fix m_eff definition

diffs (truncated from 647077 to 50 lines):

--- a/ChangeLog	Sat Jun 17 12:46:05 2017 +0100
+++ b/ChangeLog	Mon Jun 19 16:40:13 2017 +0200
@@ -1,3 +1,22 @@
+2017-06-18  Andy Buckley  <andy.buckley at cern.ch>
+
+	* Move all standard plugin files into subdirs of src/Analyses,
+	with some custom make rules driving rivet-buildplugin.
+
+2016-06-18  Holger Schulz  <holger.schulz at durham.ac.uk>
+
+        * Version 2.5.4
+
+2016-06-17  Holger Schulz  <holger.schulz at durham.ac.uk>
+
+	* Fix 8 TeV DY (ATLAS_2016_I1467454), EL/MU bits were bissing.
+
+	* Add 13 TeV DY (ATLAS_2017_I1514251) and mark
+	ATLAS_2015_CONF_2015_041 obsolete
+
+	* Add missing install statement for ATLAS_2016_I1448301.yoda/plot/info leading to
+	segfault
+
 2017-06-09  Andy Buckley  <andy.buckley at cern.ch>
 
 	* Slight improvements to Particle constructors.
--- a/Makefile.am	Sat Jun 17 12:46:05 2017 +0100
+++ b/Makefile.am	Mon Jun 19 16:40:13 2017 +0200
@@ -33,7 +33,7 @@
 
 
 ## Upload to HepForge
-RSH=rsync
-DEST=login.hepforge.org:rivet/downloads/
+RSH = rsync
+DEST = login.hepforge.org:rivet/downloads/
 upload: dist
 	$(RSH) $(DIST_ARCHIVES) $(DEST)
--- a/bin/make-plots	Sat Jun 17 12:46:05 2017 +0100
+++ b/bin/make-plots	Mon Jun 19 16:40:13 2017 +0200
@@ -500,19 +500,22 @@
     def set_xmin(self, inputdata):
         self.xmin = inputdata.xmin
         if self.xmin is None:
-            self.xmin = min(inputdata.histos[h].getXMin() for h in inputdata.description['DrawOnly'])
+            xmins = [inputdata.histos[h].getXMin() for h in inputdata.description['DrawOnly']]
+            self.xmin = min(xmins) if xmins else 0.0
 
     def set_xmax(self,inputdata):
         self.xmax = inputdata.xmax
         if self.xmax is None:


More information about the Rivet-svn mailing list