[yoda-svn] yoda: 2 new changesets

YODA Mercurial yoda at projects.hepforge.org
Mon Oct 2 10:30:02 BST 2017


details:   https://yoda.hepforge.org/hg/yoda/rev/d20ee28d5134
branches:  
changeset: 1416:d20ee28d5134
user:      David Grellscheid <david.grellscheid at durham.ac.uk>
date:      Mon Oct 02 11:25:18 2017 +0200
description:
Move singletons to cc to make them work.

details:   https://yoda.hepforge.org/hg/yoda/rev/fc9bc6f14f56
branches:  multiweight
changeset: 1417:fc9bc6f14f56
user:      David Grellscheid <david.grellscheid at durham.ac.uk>
date:      Mon Oct 02 11:26:42 2017 +0200
description:
Merge from default to get singleton fix

diffs (truncated from 1906 to 50 lines):

--- a/configure.ac	Thu Sep 28 09:39:39 2017 +0200
+++ b/configure.ac	Mon Oct 02 11:26:42 2017 +0200
@@ -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],[2.0.0-pre],[yoda at projects.hepforge.org],[YODA])
 
 ## Check and block installation into the src/build dir
 if test "$prefix" = "$PWD"; then
@@ -156,7 +156,7 @@
 
 
 ## Extend and substitute the default build flags after lib testing
-AM_CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include ${CPFLAGS}"
+AM_CPPFLAGS="-I\$(top_srcdir)/include -I\$(top_builddir)/include"
 AC_SUBST(AM_CPPFLAGS)
 AC_SUBST(AM_CXXFLAGS)
 
@@ -177,7 +177,10 @@
 AC_EMPTY_SUBST
 AC_CONFIG_FILES([Makefile Doxyfile])
 AC_CONFIG_FILES([include/Makefile include/YODA/Makefile])
-AC_CONFIG_FILES([src/Makefile src/tinyxml/Makefile src/yamlcpp/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 
--- a/include/YODA/Bin.h	Thu Sep 28 09:39:39 2017 +0200
+++ b/include/YODA/Bin.h	Mon Oct 02 11:26:42 2017 +0200
@@ -39,8 +39,8 @@
     /// @name Fill statistics
     //@{
 
-    /// The number of entries
-    virtual unsigned long numEntries() const = 0;
+    /// The number of entries (fractional fills are possible)
+    virtual double numEntries() const = 0;
 
     /// The effective number of entries
     virtual double effNumEntries() const = 0;
--- a/include/YODA/Bin1D.h	Thu Sep 28 09:39:39 2017 +0200
+++ b/include/YODA/Bin1D.h	Mon Oct 02 11:26:42 2017 +0200
@@ -205,7 +205,7 @@
 
 


More information about the yoda-svn mailing list