Import Geant4 10.7.0 source tree

This commit is contained in:
Gabriele Cosmo
2020-12-04 12:30:43 +01:00
parent 67ba86d073
commit dab42d2018
3770 changed files with 226369 additions and 286486 deletions
@@ -48,7 +48,7 @@ public:
size_t number = a_v.size();
std::vector<unsigned char> data(number);
for(size_t index=0;index<number;index++) {
data[index] = (unsigned char)a_v[index];
data[index] = (unsigned char)a_v[index];
}
return m_buf.write_array<unsigned char>(data);
}
@@ -78,11 +78,11 @@ public:
return m_buf.write_array2(a_v);
}
virtual bool visit(const std::string&,const istorable& a_v){
virtual bool visit(const std::string&,const istorable& a_v){
// WARNING : can't be called in a object.visit()
// over a a_v being a "super" of "object" .
if(!a_v.visit(*this)) return false;
return true;
return true;
}
public:
member_writer(buffer& a_buf):m_buf(a_buf){}