mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-09 21:50:45 +01:00
debug output
This commit is contained in:
parent
6d4fb35d84
commit
e138bc7204
@ -120,19 +120,20 @@ void TBaryon<FImpl1, FImpl2, FImpl3>::setup(void)
|
|||||||
// Translate the full string naming the desired gamma structure into the one we need to use
|
// Translate the full string naming the desired gamma structure into the one we need to use
|
||||||
const std::string gamma{ par().gamma };
|
const std::string gamma{ par().gamma };
|
||||||
int iGamma = 0;
|
int iGamma = 0;
|
||||||
|
std::cout << "Gamma input " << gamma << std::endl;
|
||||||
while( gamma.compare( Gamma::name[iGamma] ) )
|
while( gamma.compare( Gamma::name[iGamma] ) )
|
||||||
assert( ++iGamma < Gamma::nGamma && "Invalid gamma structure specified" );
|
assert( ++iGamma < Gamma::nGamma && "Invalid gamma structure specified" );
|
||||||
switch( iGamma ) {
|
switch( iGamma ) {
|
||||||
case Gamma::Algebra::GammaX:
|
case Gamma::Algebra::GammaX:
|
||||||
std::cout << "using interpolator C gamma_X";
|
std::cout << "using interpolator C gamma_X" << std::endl;
|
||||||
al = Gamma::Algebra::GammaZGamma5; //Still hardcoded CgX = i gamma_3 gamma_5
|
al = Gamma::Algebra::GammaZGamma5; //Still hardcoded CgX = i gamma_3 gamma_5
|
||||||
break;
|
break;
|
||||||
case Gamma::Algebra::GammaY:
|
case Gamma::Algebra::GammaY:
|
||||||
std::cout << "using interpolator C gamma_Y";
|
std::cout << "using interpolator C gamma_Y" << std::endl;
|
||||||
al = Gamma::Algebra::GammaT; //Still hardcoded CgX = - gamma_4
|
al = Gamma::Algebra::GammaT; //Still hardcoded CgX = - gamma_4
|
||||||
break;
|
break;
|
||||||
case Gamma::Algebra::GammaZ:
|
case Gamma::Algebra::GammaZ:
|
||||||
std::cout << "using interpolator C gamma_Z";
|
std::cout << "using interpolator C gamma_Z" << std::endl;
|
||||||
al = Gamma::Algebra::GammaXGamma5; //Still hardcoded CgX = i gamma_1 gamma_5
|
al = Gamma::Algebra::GammaXGamma5; //Still hardcoded CgX = i gamma_1 gamma_5
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user