Import Geant4 10.6.0 source tree

This commit is contained in:
Gabriele Cosmo
2019-12-06 15:12:28 +01:00
parent b2a62ae692
commit 5baee230e9
2997 changed files with 141580 additions and 98673 deletions
@@ -69,6 +69,12 @@ public:
m_columns.push_back(column_binding(a_name,_cid_std_vector<T>(),(void*)&a_user_var));
}
// to have consistent naming than in ntuple_booking :
template <class T>
void add_column_vec(const std::string& a_name,std::vector<T>& a_user_var) {
m_columns.push_back(column_binding(a_name,_cid_std_vector<T>(),(void*)&a_user_var));
}
template <class T>
void add_column_cid(const std::string& a_name,T& a_user_var) {
m_columns.push_back(column_binding(a_name,T::id_class(),(void*)&a_user_var));