|
[yoda-svn] yoda: 5 new changesetsYODA Mercurial yoda at projects.hepforge.orgMon Dec 21 15:45:01 GMT 2015
details: https://yoda.hepforge.org/hg/yoda/rev/8c8336f9ea1f branches: release-1-5 changeset: 1206:8c8336f9ea1f user: Andy Buckley <andy at insectnation.org> date: Mon Dec 21 13:49:41 2015 +0000 description: Add missing root.py submodule file. Oops! details: https://yoda.hepforge.org/hg/yoda/rev/09c6239b8c68 branches: release-1-5 changeset: 1207:09c6239b8c68 user: Andy Buckley <andy at insectnation.org> date: Mon Dec 21 15:23:44 2015 +0000 description: Add optional range arguments to rebinBy methods, allowing block rebinnings to be applied only within a range of (original) bin indices. Add a rebinning unit test, pytest-rebin details: https://yoda.hepforge.org/hg/yoda/rev/f4f3465b93e3 branches: release-1-5 changeset: 1208:f4f3465b93e3 user: Andy Buckley <andy at insectnation.org> date: Mon Dec 21 15:27:46 2015 +0000 description: Making 1.5.8 release details: https://yoda.hepforge.org/hg/yoda/rev/3c7823f27af7 branches: release-1-5 changeset: 1209:3c7823f27af7 user: Andy Buckley <andy at insectnation.org> date: Mon Dec 21 15:30:49 2015 +0000 description: Add missing script to hg, and tweak hgignore patterns to exclude distdirs details: https://yoda.hepforge.org/hg/yoda/rev/f11ed2b3ee1e branches: changeset: 1210:f11ed2b3ee1e user: Andy Buckley <andy at insectnation.org> date: Mon Dec 21 15:34:30 2015 +0000 description: Merge to trunk from 1.5.8 release diffs (truncated from 1044 to 50 lines): --- a/.hgignore Sun Dec 20 10:27:30 2015 +0000 +++ b/.hgignore Mon Dec 21 15:34:30 2015 +0000 @@ -4,6 +4,7 @@ \.libs$ \.deps$ ^YODA-.*\.tar\.(gz|bz2)$ +^YODA-[\d\.]+$ ^yoda.pc$ ^yodaenv.sh$ Makefile$ --- a/ChangeLog Sun Dec 20 10:27:30 2015 +0000 +++ b/ChangeLog Mon Dec 21 15:34:30 2015 +0000 @@ -1,9 +1,25 @@ +2015-12-21 Andy Buckley <andy.buckley at cern.ch> + + * Version 1.5.8! + + * Add a rebinning unit test, pytest-rebin. + + * Add optional range arguments to rebinBy methods, allowing block + rebinnings to be applied only within a range of (original) bin + indices. + + * Add missing root.py submodule file. Oops! + 2015-12-20 Andy Buckley <andy.buckley at cern.ch> * Convert linspace to use multiplication rather than repeated addition to construct edge values, reducing precision errors. Thanks to Holger Schulz for the suggestion. + * Change AO uncomputable division and mkScatter operations to + return/set NaN rather than 0 -- behaviour change requires new + major version series 1.6. + 2015-12-15 Andy Buckley <andy.buckley at cern.ch> * Add xEdges() methods to Axis1D and the Histo1D and Profile1D --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/bin/root2yoda Mon Dec 21 15:34:30 2015 +0000 @@ -0,0 +1,33 @@ +#! /usr/bin/env python + +"""\ +%prog rootfile [yodafile] + +Convert a ROOT data file to the YODA data format. +""" + +import yoda, os, sys, optparse
More information about the yoda-svn mailing list |