aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@83718e91-0e4f-0410-abf4-91180603181f>2008-03-07 15:46:43 +0000
committertradke <tradke@83718e91-0e4f-0410-abf4-91180603181f>2008-03-07 15:46:43 +0000
commitdbba9f2527a9075ce4b9b76446e099e07ad48082 (patch)
treeb40677283901a12e4eb99ef0c3c144cb462182b2
parent55703b550eee4bd87cb1f7d832573d1ef43a88f2 (diff)
- do not publish the source ID anymore
- also publish the simulation ID git-svn-id: http://svn.cactuscode.org/arrangements/CactusUtils/Formaline/trunk@169 83718e91-0e4f-0410-abf4-91180603181f
-rw-r--r--src/rdf.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rdf.cc b/src/rdf.cc
index c54c00b..da6f734 100644
--- a/src/rdf.cc
+++ b/src/rdf.cc
@@ -113,7 +113,7 @@ namespace Formaline
const string title(clean(buf));
const string configID(clean(static_cast<const char *> (UniqueConfigID(0))));
const string buildID(clean(static_cast<const char *> (UniqueBuildID(0))));
- const string sourceID(clean(static_cast<const char *> (UniqueSourceID(0))));
+ const string bbhID(clean(static_cast<const char *> (UniqueSimulationID(0))));
const string runID(clean(static_cast<const char *> (UniqueRunID(0))));
msgbuf << "<cctk:Simulation rdf:about=\"#" << jobID << "\"" << endl
@@ -125,7 +125,7 @@ namespace Formaline
<< "\tcctk:title=\"" << title << "\"" << endl
<< "\tcctk:configID=\"" << configID << "\"" << endl
<< "\tcctk:buildID=\"" << buildID << "\"" << endl
- << "\tcctk:sourceID=\"" << sourceID << "\"" << endl
+ << "\tcctk:bbhID=\"" << bbhID << "\"" << endl
<< "\tcctk:runID=\"" << runID << "\"" << endl;
const char* const pbsJobID = getenv ("PBS_JOBID");
if (pbsJobID) {