|
[yoda-svn] yoda: 4 new changesetsYODA Mercurial yoda at projects.hepforge.orgWed Dec 20 16:15:02 GMT 2017
details: https://yoda.hepforge.org/hg/yoda/rev/2b3db7855648 branches: changeset: 1437:2b3db7855648 user: Andy Buckley <andy at insectnation.org> date: Mon Dec 11 11:18:30 2017 +0000 description: Add Nentries printout to yodals -v details: https://yoda.hepforge.org/hg/yoda/rev/91147fd24ffc branches: changeset: 1438:91147fd24ffc user: Andy Buckley <andy at insectnation.org> date: Mon Dec 11 11:19:31 2017 +0000 description: Update to patched Python-detection m4 macro by AB details: https://yoda.hepforge.org/hg/yoda/rev/9d94e72b2f18 branches: changeset: 1439:9d94e72b2f18 user: Andy Buckley <andy at insectnation.org> date: Tue Dec 19 21:33:41 2017 +0000 description: Bump version details: https://yoda.hepforge.org/hg/yoda/rev/2c76de025985 branches: changeset: 1440:2c76de025985 user: Andy Buckley <andy at insectnation.org> date: Wed Dec 20 16:05:32 2017 +0000 description: Tweak block-naming, so BEGIN and END names match exactly diffs (truncated from 253 to 50 lines): --- a/ChangeLog Wed Nov 22 14:54:20 2017 +0000 +++ b/ChangeLog Wed Dec 20 16:05:32 2017 +0000 @@ -1,3 +1,7 @@ +2017-12-11 Andy Buckley <andy.buckley at cern.ch> + + * Add Nentries printout to yodals -v + 2017-09-18 Andy Buckley <andy.buckley at cern.ch> * Patches for ROOT conversion from Robert Hatcher -- thanks! --- a/bin/yodals Wed Nov 22 14:54:20 2017 +0000 +++ b/bin/yodals Wed Dec 20 16:05:32 2017 +0000 @@ -40,8 +40,11 @@ filter_aos(aodict, opts.MATCH, opts.UNMATCH) for p, ao in ysorted(aodict.items()): extrainfo = "" - if opts.VERBOSITY >= 2 and hasattr(ao, "sumW"): - extrainfo = " sumW={sumw:.3g}".format(sumw=ao.sumW()) + if opts.VERBOSITY >= 2: + if hasattr(ao, "numEntries"): + extrainfo += " N={sumw:.3g}".format(sumw=ao.numEntries()) + if hasattr(ao, "sumW"): + extrainfo += " sumW={sumw:.3g}".format(sumw=ao.sumW()) try: nobjstr = "{n:4d}".format(n=len(ao)) except: --- a/configure.ac Wed Nov 22 14:54:20 2017 +0000 +++ b/configure.ac Wed Dec 20 16:05:32 2017 +0000 @@ -1,7 +1,7 @@ ## Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([YODA],[1.7.0a1],[yoda at projects.hepforge.org],[YODA]) +AC_INIT([YODA],[1.7.0],[yoda at projects.hepforge.org],[YODA]) ## Check and block installation into the src/build dir if test "$prefix" = "$PWD"; then @@ -177,13 +177,13 @@ AC_EMPTY_SUBST AC_CONFIG_FILES([Makefile Doxyfile]) AC_CONFIG_FILES([include/Makefile include/YODA/Makefile]) -AC_CONFIG_FILES([src/Makefile - src/tinyxml/Makefile +AC_CONFIG_FILES([src/Makefile + src/tinyxml/Makefile src/yamlcpp/Makefile ]) AC_CONFIG_FILES([tests/Makefile]) -AC_CONFIG_FILES([pyext/Makefile - pyext/setup.py
More information about the yoda-svn mailing list |