Import Geant4 10.6.0 source tree
This commit is contained in:
@@ -18,9 +18,9 @@ namespace wroot {
|
||||
// sizeof(TNamed) = 28 = TObject + 2 * TString.
|
||||
// sizeof(TObjArray) = 40
|
||||
|
||||
class StreamerInfo : public virtual ibo {
|
||||
class streamer_info : public virtual ibo {
|
||||
static const std::string& s_class() {
|
||||
static const std::string s_v("tools::wroot::StreamerInfo");
|
||||
static const std::string s_v("tools::wroot::streamer_info");
|
||||
return s_v;
|
||||
}
|
||||
public: //ibo
|
||||
@@ -45,13 +45,13 @@ public: //ibo
|
||||
}
|
||||
public:
|
||||
virtual void out(std::ostream& a_out) const {
|
||||
a_out << "StreamerInfo for class :"
|
||||
a_out << "streamer_info for class :"
|
||||
<< " " << fName << ", version=" << fStreamedClassVersion
|
||||
<< std::endl;
|
||||
tools_vforcit(streamer_element*,fElements,it) (*it)->out(a_out);
|
||||
}
|
||||
public:
|
||||
StreamerInfo(const std::string& a_cls_store_name,int a_cls_vers,unsigned int a_cls_check_sum)
|
||||
streamer_info(const std::string& a_cls_store_name,int a_cls_vers,unsigned int a_cls_check_sum)
|
||||
:fName(a_cls_store_name)
|
||||
,fTitle("")
|
||||
,fCheckSum(a_cls_check_sum)
|
||||
@@ -61,13 +61,13 @@ public:
|
||||
mem::increment(s_class().c_str());
|
||||
#endif
|
||||
}
|
||||
virtual ~StreamerInfo(){
|
||||
virtual ~streamer_info(){
|
||||
#ifdef TOOLS_MEM
|
||||
mem::decrement(s_class().c_str());
|
||||
#endif
|
||||
}
|
||||
protected:
|
||||
StreamerInfo(const StreamerInfo& a_from)
|
||||
streamer_info(const streamer_info& a_from)
|
||||
:ibo(a_from)
|
||||
,fName(a_from.fName)
|
||||
,fTitle(a_from.fName)
|
||||
@@ -79,7 +79,7 @@ protected:
|
||||
mem::increment(s_class().c_str());
|
||||
#endif
|
||||
}
|
||||
StreamerInfo& operator=(const StreamerInfo& a_from){
|
||||
streamer_info& operator=(const streamer_info& a_from){
|
||||
fName = a_from.fName;
|
||||
fTitle = a_from.fName;
|
||||
fCheckSum = a_from.fCheckSum;
|
||||
|
||||
Reference in New Issue
Block a user