mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-04 19:25:56 +01:00
Fermion <-> Propagator functions
This commit is contained in:
parent
23b6172c31
commit
6aa000176f
@ -383,7 +383,6 @@ namespace QCD {
|
|||||||
//////////////////////////////////////////////
|
//////////////////////////////////////////////
|
||||||
// Poke scalars
|
// Poke scalars
|
||||||
//////////////////////////////////////////////
|
//////////////////////////////////////////////
|
||||||
|
|
||||||
template<class vobj> void pokeSpin(vobj &lhs,const decltype(peekIndex<SpinIndex>(lhs,0)) & rhs,int i)
|
template<class vobj> void pokeSpin(vobj &lhs,const decltype(peekIndex<SpinIndex>(lhs,0)) & rhs,int i)
|
||||||
{
|
{
|
||||||
pokeIndex<SpinIndex>(lhs,rhs,i);
|
pokeIndex<SpinIndex>(lhs,rhs,i);
|
||||||
@ -407,7 +406,41 @@ namespace QCD {
|
|||||||
pokeIndex<LorentzIndex>(lhs,rhs,i);
|
pokeIndex<LorentzIndex>(lhs,rhs,i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//////////////////////////////////////////////
|
||||||
|
// Fermion <-> propagator assignements
|
||||||
|
//////////////////////////////////////////////
|
||||||
|
template <class Prop, class Ferm>
|
||||||
|
void FermToProp(Prop &p, const Ferm &f, const int s, const int c)
|
||||||
|
{
|
||||||
|
for(int j = 0; j < Ns; ++j)
|
||||||
|
{
|
||||||
|
auto pjs = peekSpin(p, j, s);
|
||||||
|
auto fj = peekSpin(f, j);
|
||||||
|
|
||||||
|
for(int i = 0; i < Nc; ++i)
|
||||||
|
{
|
||||||
|
pokeColour(pjs, peekColour(fj, i), i, c);
|
||||||
|
}
|
||||||
|
pokeSpin(p, pjs, j, s);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class Prop, class Ferm>
|
||||||
|
void PropToFerm(Ferm &f, const Prop &p, const int s, const int c)
|
||||||
|
{
|
||||||
|
for(int j = 0; j < Ns; ++j)
|
||||||
|
{
|
||||||
|
auto pjs = peekSpin(p, j, s);
|
||||||
|
auto fj = peekSpin(f, j);
|
||||||
|
|
||||||
|
for(int i = 0; i < Nc; ++i)
|
||||||
|
{
|
||||||
|
pokeColour(fj, peekColour(pjs, i, c), i);
|
||||||
|
}
|
||||||
|
pokeSpin(f, fj, j);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
//////////////////////////////////////////////
|
//////////////////////////////////////////////
|
||||||
// transpose array and scalar
|
// transpose array and scalar
|
||||||
//////////////////////////////////////////////
|
//////////////////////////////////////////////
|
||||||
|
Loading…
x
Reference in New Issue
Block a user