mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-09 21:50:45 +01:00
Remove redundancy in LapEvec filename
This commit is contained in:
parent
7214681e11
commit
a97b814f0c
@ -257,9 +257,6 @@ void TLapEvec<GImpl>::execute(void)
|
|||||||
// Invert Peardon Nabla operator separately on each time-slice
|
// Invert Peardon Nabla operator separately on each time-slice
|
||||||
////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
std::string sEigenPackName(getName());
|
|
||||||
sEigenPackName.append("_");
|
|
||||||
sEigenPackName.append(std::to_string(vm().getTrajectory()));
|
|
||||||
bool bReturnValue = true;
|
bool bReturnValue = true;
|
||||||
auto & eig4d = envGet(DistilEP, getName() );
|
auto & eig4d = envGet(DistilEP, getName() );
|
||||||
envGetTmp(std::vector<DistilEP>, eig); // Eigenpack for each timeslice
|
envGetTmp(std::vector<DistilEP>, eig); // Eigenpack for each timeslice
|
||||||
@ -337,7 +334,10 @@ void TLapEvec<GImpl>::execute(void)
|
|||||||
// Now write out the 4d eigenvectors
|
// Now write out the 4d eigenvectors
|
||||||
eig4d.record.operatorXml = DefaultOperatorXml;
|
eig4d.record.operatorXml = DefaultOperatorXml;
|
||||||
eig4d.record.solverXml = DefaultsolverXml;
|
eig4d.record.solverXml = DefaultsolverXml;
|
||||||
eig4d.write(sEigenPackName + "." + std::to_string(vm().getTrajectory()),false);
|
std::string sEigenPackName(getName());
|
||||||
|
sEigenPackName.append(".");
|
||||||
|
sEigenPackName.append(std::to_string(vm().getTrajectory()));
|
||||||
|
eig4d.write(sEigenPackName,false);
|
||||||
|
|
||||||
// Close the local debugging log file
|
// Close the local debugging log file
|
||||||
if( ll ) {
|
if( ll ) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user