|
[yoda-svn] yoda: 2 new changesetsYODA Mercurial yoda at projects.hepforge.orgFri Feb 5 16:30:01 GMT 2016
details: https://yoda.hepforge.org/hg/yoda/rev/4b084b5007b9 branches: release-1-5 changeset: 1213:4b084b5007b9 user: Andy Buckley <andy at insectnation.org> date: Fri Feb 05 15:40:23 2016 +0000 description: Don't loudly complain if ROOT support isn't installed, unless it's actually being used details: https://yoda.hepforge.org/hg/yoda/rev/c156a52ce688 branches: release-1-5 changeset: 1214:c156a52ce688 user: Andy Buckley <andy at insectnation.org> date: Fri Feb 05 16:16:13 2016 +0000 description: Merged diffs (22 lines): --- a/include/YODA/Weights.h Mon Dec 21 15:30:49 2015 +0000 +++ b/include/YODA/Weights.h Fri Feb 05 16:16:13 2016 +0000 @@ -217,7 +217,7 @@ } /// Not equals - bool operator == (const Weights& other) { + bool operator != (const Weights& other) const { return !(*this == other); } --- a/pyext/yoda/root.py Mon Dec 21 15:30:49 2015 +0000 +++ b/pyext/yoda/root.py Fri Feb 05 16:16:13 2016 +0000 @@ -1,7 +1,7 @@ try: from yoda.rootcompat import * except ImportError, e: - print "YODA built without ROOT support" + #print "YODA built without ROOT support" raise e def getall(d, basepath="/"):
More information about the yoda-svn mailing list |