Import Geant4 11.1.0.beta source tree
This commit is contained in:
+4
-4
@@ -22,10 +22,10 @@ namespace waxml {
|
||||
inline std::string soutd(std::ostringstream& a_oss,double a_value) {
|
||||
a_oss.str("");
|
||||
a_oss << a_value;
|
||||
std::string s("\"");
|
||||
s += a_oss.str();
|
||||
s += "\"";
|
||||
return s;
|
||||
std::string _s("\"");
|
||||
_s += a_oss.str();
|
||||
_s += "\"";
|
||||
return _s;
|
||||
}
|
||||
|
||||
inline std::string bin_to_string(std::ostringstream& a_oss,int a_index) {
|
||||
|
||||
+6
-6
@@ -168,9 +168,9 @@ public:
|
||||
const std::vector<iobj*>& columns() const {return m_cols;}
|
||||
|
||||
std::string booking(bool a_xml_esc) const {
|
||||
std::string s;
|
||||
get_booking(m_cols,a_xml_esc,s);
|
||||
return s;
|
||||
std::string _s;
|
||||
get_booking(m_cols,a_xml_esc,_s);
|
||||
return _s;
|
||||
}
|
||||
void reset() {m_tmp.clear();}
|
||||
const std::string& value() const {return m_tmp;}
|
||||
@@ -473,9 +473,9 @@ public:
|
||||
}
|
||||
|
||||
std::string booking(bool a_xml_esc) const {
|
||||
std::string s;
|
||||
get_booking(m_cols,a_xml_esc,s);
|
||||
return s;
|
||||
std::string _s;
|
||||
get_booking(m_cols,a_xml_esc,_s);
|
||||
return _s;
|
||||
}
|
||||
|
||||
protected:
|
||||
|
||||
Reference in New Issue
Block a user