|
[yoda-svn] yoda: 6 new changesetsYODA Mercurial yoda at projects.hepforge.orgThu Sep 3 21:45:02 BST 2015
details: https://yoda.hepforge.org/hg/yoda/rev/7fb78b17794f branches: changeset: 1121:7fb78b17794f user: Andy Buckley <andy at insectnation.org> date: Thu Sep 03 21:21:26 2015 +0100 description: Bug fix in the Point3D Python constructor. details: https://yoda.hepforge.org/hg/yoda/rev/97891893cbfc branches: changeset: 1122:97891893cbfc user: Andy Buckley <andy at insectnation.org> date: Thu Sep 03 21:26:08 2015 +0100 description: Improving scatter and point class Python wrapper function name for accessing the C++ pointer details: https://yoda.hepforge.org/hg/yoda/rev/fdfbb2d5bba2 branches: changeset: 1123:fdfbb2d5bba2 user: Andy Buckley <andy at insectnation.org> date: Thu Sep 03 21:27:45 2015 +0100 description: Bump version number to 1.5.1 details: https://yoda.hepforge.org/hg/yoda/rev/9995e1d8bfa0 branches: changeset: 1124:9995e1d8bfa0 user: Andy Buckley <andy at insectnation.org> date: Thu Sep 03 21:36:18 2015 +0100 description: Oops, fix another problem in Point3D details: https://yoda.hepforge.org/hg/yoda/rev/ede1e10afe3b branches: changeset: 1125:ede1e10afe3b user: Andy Buckley <andy at insectnation.org> date: Thu Sep 03 21:37:09 2015 +0100 description: Added tag yoda-1.5.1 for changeset d9a2076dcaff details: https://yoda.hepforge.org/hg/yoda/rev/bb43712313cb branches: changeset: 1126:bb43712313cb user: Andy Buckley <andy at insectnation.org> date: Thu Sep 03 21:43:57 2015 +0100 description: Added tag yoda-1.5.1 for changeset ede1e10afe3b diffs (truncated from 823 to 50 lines): --- a/.hgtags Tue Sep 01 11:51:19 2015 +0100 +++ b/.hgtags Thu Sep 03 21:43:57 2015 +0100 @@ -17,3 +17,6 @@ c26de2762ed22a840a41ac25d36550307d48829a yoda-1.3.1 9bdaa370b066244a1174b9a4d0ae272be8a92a4a yoda-1.4.0 95f1e7f4bfb4e283c5513077cc73803754298d40 yoda-1.5.0 +d9a2076dcaffb55fad556937f744f2fe9468e365 yoda-1.5.1 +0000000000000000000000000000000000000000 yoda-1.5.1 +ede1e10afe3b1292f1a923c152ac87d43dc02a5a yoda-1.5.1 --- a/ChangeLog Tue Sep 01 11:51:19 2015 +0100 +++ b/ChangeLog Thu Sep 03 21:43:57 2015 +0100 @@ -1,3 +1,9 @@ +2015-09-03 Andy Buckley <andy.buckley at cern.ch> + + * Version 1.5.1 release. + + * Fix bugs in Python wrapper for Point3D. + 2015-08-28 Peter Richardson <Peter.Richardson at durham.ac.uk> * Catch LowStatsError when writing multiple histograms so only the --- a/configure.ac Tue Sep 01 11:51:19 2015 +0100 +++ b/configure.ac Thu Sep 03 21:43:57 2015 +0100 @@ -1,7 +1,7 @@ ## Process this file with autoconf to produce a configure script. AC_PREREQ(2.59) -AC_INIT([YODA],[1.5.0],[yoda at projects.hepforge.org],[YODA]) +AC_INIT([YODA],[1.5.1],[yoda at projects.hepforge.org],[YODA]) ## Check and block installation into the src/build dir if test "$prefix" = "$PWD"; then --- a/pyext/yoda/include/Histo1D.pyx Tue Sep 01 11:51:19 2015 +0100 +++ b/pyext/yoda/include/Histo1D.pyx Thu Sep 03 21:43:57 2015 +0100 @@ -28,9 +28,6 @@ cdef inline c.Histo1D* h1ptr(self) except NULL: return <c.Histo1D*> self.ptr() - # TODO: remove - cdef inline c.Histo1D* _Histo1D(self) except NULL: - return <c.Histo1D*> self.ptr() def __init__(self, *args, **kwargs): --- a/pyext/yoda/include/Histo2D.pyx Tue Sep 01 11:51:19 2015 +0100 +++ b/pyext/yoda/include/Histo2D.pyx Thu Sep 03 21:43:57 2015 +0100 @@ -27,9 +27,6 @@ cdef inline c.Histo2D* h2ptr(self) except NULL: return <c.Histo2D*> self.ptr()
More information about the yoda-svn mailing list |