Import Geant4 11.4.0 source tree

This commit is contained in:
Gabriele Cosmo
2025-12-05 08:54:02 +01:00
parent a499fb82e9
commit b4a16de652
6484 changed files with 232674 additions and 221097 deletions
+1 -22
View File
@@ -9,22 +9,12 @@
#include "branch_element"
#include "icol"
#include "../vfind"
#ifdef TOOLS_MEM
#include "../mem"
#endif
#include "../vmanip"
namespace tools {
namespace wroot {
class base_pntuple {
#ifdef TOOLS_MEM
static const std::string& s_class() {
static const std::string s_v("tools::wroot::base_pntuple");
return s_v;
}
#endif
public:
#include "columns.icc"
@@ -36,22 +26,13 @@ public:
,m_name(a_name)
,m_title(a_title)
{
#ifdef TOOLS_MEM
mem::increment(s_class().c_str());
#endif
}
virtual ~base_pntuple() {
safe_clear<icol>(m_cols);
#ifdef TOOLS_MEM
mem::decrement(s_class().c_str());
#endif
}
protected:
base_pntuple(const base_pntuple& a_from):m_out(a_from.m_out){
#ifdef TOOLS_MEM
mem::increment(s_class().c_str());
#endif
}
base_pntuple& operator=(const base_pntuple&){return *this;}
public:
@@ -116,8 +97,6 @@ public:
}
}
//void set_basket_size(uint32 a_size) {tools_vforit(icol*,m_cols,it) (*it)->set_basket_size(a_size);}
protected:
std::ostream& m_out;
seek m_seek_directory;