|
[yoda-svn] yoda: 3 new changesetsYODA Mercurial yoda at projects.hepforge.orgFri Aug 28 13:00:01 BST 2015
details: https://yoda.hepforge.org/hg/yoda/rev/66604b5f2c6a branches: changeset: 1117:66604b5f2c6a user: Andy Buckley <andy at insectnation.org> date: Fri Aug 28 12:55:48 2015 +0100 description: Last parser tweaks details: https://yoda.hepforge.org/hg/yoda/rev/95f1e7f4bfb4 branches: changeset: 1118:95f1e7f4bfb4 user: Andy Buckley <andy at insectnation.org> date: Fri Aug 28 12:57:59 2015 +0100 description: Mark for version 1.5.0 release details: https://yoda.hepforge.org/hg/yoda/rev/8908e970902f branches: changeset: 1119:8908e970902f user: Andy Buckley <andy at insectnation.org> date: Fri Aug 28 12:58:06 2015 +0100 description: Added tag yoda-1.5.0 for changeset 95f1e7f4bfb4 diffs (truncated from 58 to 50 lines): --- a/.hgtags Fri Aug 21 14:49:29 2015 +0100 +++ b/.hgtags Fri Aug 28 12:58:06 2015 +0100 @@ -16,3 +16,4 @@ 0000000000000000000000000000000000000000 yoda-1.3.1 c26de2762ed22a840a41ac25d36550307d48829a yoda-1.3.1 9bdaa370b066244a1174b9a4d0ae272be8a92a4a yoda-1.4.0 +95f1e7f4bfb4e283c5513077cc73803754298d40 yoda-1.5.0 --- a/ChangeLog Fri Aug 21 14:49:29 2015 +0100 +++ b/ChangeLog Fri Aug 28 12:58:06 2015 +0100 @@ -1,3 +1,12 @@ +2015-08-28 Andy Buckley <andy.buckley at cern.ch> + + * Version 1.5.0 release. + +2015-08-24 Andy Buckley <andy.buckley at cern.ch> + + * Improve protection of efficiency calculation against the weird + world of general weighted events. + 2015-08-17 Andy Buckley <andy.buckley at cern.ch> * Add some protection against calling matplotlib's legend() method --- a/src/ReaderFLAT.cc Fri Aug 21 14:49:29 2015 +0100 +++ b/src/ReaderFLAT.cc Fri Aug 28 12:58:06 2015 +0100 @@ -39,8 +39,8 @@ while (Utils::getline(stream, s)) { nline += 1; - /// @todo Trim the line - // ... + // Trim the line + Utils::itrim(s); // Ignore blank lines if (s.empty()) continue; --- a/src/ReaderYODA.cc Fri Aug 21 14:49:29 2015 +0100 +++ b/src/ReaderYODA.cc Fri Aug 28 12:58:06 2015 +0100 @@ -52,7 +52,7 @@ while (Utils::getline(stream, s)) { nline += 1; - /// Trim the line + // Trim the line Utils::itrim(s); // Ignore blank lines @@ -89,7 +89,11 @@ // Get block path if possible const string path = (parts.size() >= 3) ? parts[2] : "";
More information about the yoda-svn mailing list |