1
0
mirror of https://github.com/paboyle/Grid.git synced 2025-06-17 23:37:06 +01:00

Make use of GammaL class in Weak Hamiltonian contractions

This commit is contained in:
Lanny91
2017-02-08 12:45:39 +00:00
parent 6ebf8b12b6
commit beba824136
4 changed files with 6 additions and 10 deletions

View File

@ -114,10 +114,8 @@ void TWeakHamiltonianEye::execute(void)
// Setup for S-type contractions.
for (int mu = 0; mu < ndim; ++mu)
{
S_body[mu] = MAKE_SE_BODY(q1, q2, q3, Gamma::gmu[mu]) -
MAKE_SE_BODY(q1, q2, q3, Gamma::gmu[mu]*g5);
S_loop[mu] = MAKE_SE_LOOP(q4, Gamma::gmu[mu]) -
MAKE_SE_LOOP(q4, Gamma::gmu[mu]*g5);
S_body[mu] = MAKE_SE_BODY(q1, q2, q3, GammaL(Gamma::gmu[mu]));
S_loop[mu] = MAKE_SE_LOOP(q4, GammaL(Gamma::gmu[mu]));
}
// Perform S-type contractions.