1
0
mirror of https://github.com/paboyle/Grid.git synced 2024-11-10 07:55:35 +00:00

This is probably what you want ...

This commit is contained in:
Michael Marshall 2019-07-10 12:29:33 +01:00
parent cd659525e1
commit 7bc4a06f3f

View File

@ -62,7 +62,7 @@ public:
{
public:
GRID_SERIALIZABLE_CLASS_MEMBERS(Result,
std::vector<std::vector<std::vector<Complex>>>, corr);
std::vector<Complex>, corr);
};
public:
// constructor
@ -183,7 +183,7 @@ void TNucleon<FImpl1, FImpl2, FImpl3>::execute(void)
sliceSum(c,buf,Tp);
for (unsigned int t = 0; t < buf.size(); ++t)
{
//result.corr[t] = TensorRemove(buf[t]);
result.corr[t] = TensorRemove(buf[t]);
}
saveResult(par().output, "baryon", result);