X-Git-Url: http://git.treefish.org/~alex/phys/latlib.git/blobdiff_plain/4d4c1c97b3e05fc15c7ebac8d5237ad1b8844230..44862121803df9a22a5b88b8df2167f5f4afe6b1:/writeout.cpp?ds=inline diff --git a/writeout.cpp b/writeout.cpp index eb14309..2290a94 100644 --- a/writeout.cpp +++ b/writeout.cpp @@ -9,23 +9,25 @@ #include #include #include +#include using namespace std; -string writeout::tstamp() +string writeout::tstamp(const long& timestamp) { - stringstream sstr; - sstr << time (NULL); - return sstr.str(); + stringstream sstr; + if(!timestamp) sstr << time (NULL); + else sstr << timestamp; + return sstr.str(); } writeout::writeout(const string& wdir, const string& signature, - const int& rank, const int& procs) + const int& rank, const int& procs, const long& timestamp) { if(wdir != ""){ numprocs = procs; sprintf(cRank, "%d", rank); - fulldir = wdir + "/" + tstamp() + "_" + signature; + fulldir = wdir + "/" + tstamp(timestamp) + "_" + signature + ".tmp"; mkdir( fulldir.c_str(), 0775); if(rank>0) of.open( (fulldir + "/rank" + cRank + ".tmp").c_str() ); @@ -68,6 +70,7 @@ writeout::~writeout() } of << "#end" << endl << flush; of.close(); + rename( fulldir.c_str(), fulldir.substr(0, fulldir.length()-4).c_str() ); } else {