aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@83718e91-0e4f-0410-abf4-91180603181f>2008-03-07 14:01:50 +0000
committertradke <tradke@83718e91-0e4f-0410-abf4-91180603181f>2008-03-07 14:01:50 +0000
commit55703b550eee4bd87cb1f7d832573d1ef43a88f2 (patch)
treeebfc4d6826d900657cd312ffe77983060ba1cd46
parente3d9c5263400fc1f5ef45980c6314d5d6afb9b7f (diff)
disable publishing the active thorns list and all parameters for now
(it blows up the published RDF metadata and isn't used yet anyway) git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@168 83718e91-0e4f-0410-abf4-91180603181f
-rw-r--r--src/rdf.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/rdf.cc b/src/rdf.cc
index 02bca89..c54c00b 100644
--- a/src/rdf.cc
+++ b/src/rdf.cc
@@ -175,6 +175,7 @@ namespace Formaline
<< "\t<cctk:parameterFile rdf:resource=\"#ParameterFile\"/>" << endl
<< "</cctk:Simulation>" << endl << endl;
+#ifdef ALSO_STORE_THORNLIST_AND_PARAMETERS
// store thorn list
msgbuf << "<cctk:ThornList rdf:about=\"#ThornList\">" << endl;
const int numthorns = CCTK_NumCompiledThorns ();
@@ -185,6 +186,7 @@ namespace Formaline
<< thornname << "\"/>" << endl;
}
msgbuf << "</cctk:ThornList>" << endl << endl;
+#endif
// store parameter file name and contents
char parfilebuf[512] = "";
@@ -203,6 +205,7 @@ namespace Formaline
msgbuf << "</rdf:value>" << endl
<< "</cctk:ParameterFile>" << endl << endl;
+#ifdef ALSO_STORE_THORNLIST_AND_PARAMETERS
// store all parameters which have been set in the parfile
msgbuf
<< "<!-- ============================================================ -->" << endl
@@ -325,6 +328,7 @@ namespace Formaline
} // loop over all thorns
msgbuf << endl << parambuf.str();
+#endif
}