1
0
mirror of https://github.com/paboyle/Grid.git synced 2026-01-06 01:49:33 +00:00

Output all terms of scalar propagator separately

This commit is contained in:
James Harrison
2017-03-24 17:13:55 +00:00
parent 0c006fbfaa
commit 85516e9c7c
2 changed files with 78 additions and 17 deletions

View File

@@ -45,9 +45,10 @@ private:
void momD1(ScalarField &s, FFT &fft);
void momD2(ScalarField &s, FFT &fft);
private:
std::string freeMomPropName_, GFSrcName_;
std::string freeMomPropName_, GFSrcName_, prop0Name_,
propD1Name_, propD1D1Name_, propD2Name_;
std::vector<std::string> phaseName_;
ScalarField *freeMomProp_, *GFSrc_;
ScalarField *freeMomProp_, *GFSrc_, *prop0_;
std::vector<ScalarField *> phase_;
EmField *A;
};