From 8b2fd2e3a8c9d26e4b5a6ef711602b177d2e1a1f Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Sat, 2 Aug 2003 00:25:32 +0000 Subject: [PATCH] Took out print statements in debug blocks --- Cantera/src/xml.cpp | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/Cantera/src/xml.cpp b/Cantera/src/xml.cpp index 4cef33a3a..b9ebb1105 100755 --- a/Cantera/src/xml.cpp +++ b/Cantera/src/xml.cpp @@ -253,10 +253,10 @@ namespace Cantera { } else { #ifdef DEBUG_HKM - cout << "tag fed to parseTag = " << tag << endl; - if (tag == "standardConc model=\"molar volume\" /") { - cout << "we are here" << endl; - } + //cout << "tag fed to parseTag = " << tag << endl; + //if (tag == "standardConc model=\"molar volume\" /") { + // cout << "we are here" << endl; + //} #endif parseTag(tag, name, attribs); return name; @@ -547,13 +547,13 @@ namespace Cantera { string cname; map::const_iterator i; #ifdef DEBUG_HKM - if (loc == "elementArray") { - i = m_childindex.begin(); - for ( ; i != m_childindex.end(); i++) { - XML_Node*ccc = i->second; - cout << i->first << " " << ccc->name() << endl; - } - } + //if (loc == "elementArray") { + // i = m_childindex.begin(); + // for ( ; i != m_childindex.end(); i++) { + // XML_Node*ccc = i->second; + // cout << i->first << " " << ccc->name() << endl; + // } + //} #endif while (1) { iloc = loc.find('/'); @@ -664,10 +664,10 @@ namespace Cantera { XML_Node* find_XML(string src, XML_Node* root, string id, string loc, string name) { #ifdef DEBUG_HKM - cout << "find_XML src = " << src << endl; - cout << "find_XML id = " << id << endl; - cout << "find_XML loc = " << loc << endl; - cout << "find_XML name = " << name << endl; + // cout << "find_XML src = " << src << endl; + // cout << "find_XML id = " << id << endl; + // cout << "find_XML loc = " << loc << endl; + // cout << "find_XML name = " << name << endl; #endif string file, id2; split(src, file, id2);