mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Naming of files improvement.
This commit is contained in:
parent
1b94253ba4
commit
0abfbcc8eb
@ -26,8 +26,8 @@ namespace Grid{
|
|||||||
void TrajectoryComplete(int traj, GaugeField &U, GridSerialRNG &sRNG, GridParallelRNG & pRNG )
|
void TrajectoryComplete(int traj, GaugeField &U, GridSerialRNG &sRNG, GridParallelRNG & pRNG )
|
||||||
{
|
{
|
||||||
if ( (traj % SaveInterval)== 0 ) {
|
if ( (traj % SaveInterval)== 0 ) {
|
||||||
std::string rng; { std::ostringstream os; os << rngStem << traj; rng = os.str(); }
|
std::string rng; { std::ostringstream os; os << rngStem <<"."<< traj; rng = os.str(); }
|
||||||
std::string config;{ std::ostringstream os; os << configStem << traj; config = os.str();}
|
std::string config;{ std::ostringstream os; os << configStem <<"."<< traj; config = os.str();}
|
||||||
|
|
||||||
int precision32=1;
|
int precision32=1;
|
||||||
int tworow =0;
|
int tworow =0;
|
||||||
@ -37,8 +37,9 @@ namespace Grid{
|
|||||||
};
|
};
|
||||||
|
|
||||||
void CheckpointRestore(int traj, GaugeField &U, GridSerialRNG &sRNG, GridParallelRNG & pRNG ){
|
void CheckpointRestore(int traj, GaugeField &U, GridSerialRNG &sRNG, GridParallelRNG & pRNG ){
|
||||||
std::string rng; { std::ostringstream os; os << rngStem << "rng." << traj; rng = os.str(); }
|
|
||||||
std::string config;{ std::ostringstream os; os << configStem << "rng." << traj; rng = os.str();}
|
std::string rng; { std::ostringstream os; os << rngStem <<"."<< traj; rng = os.str(); }
|
||||||
|
std::string config;{ std::ostringstream os; os << configStem <<"."<< traj; config = os.str();}
|
||||||
|
|
||||||
NerscField header;
|
NerscField header;
|
||||||
NerscIO::readRNGState(sRNG,pRNG,header,rng);
|
NerscIO::readRNGState(sRNG,pRNG,header,rng);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user