mirror of
https://github.com/paboyle/Grid.git
synced 2025-04-09 21:50:45 +01:00
removed most default behaviour
This commit is contained in:
parent
df586a142d
commit
b8f0878981
@ -106,23 +106,8 @@ template <typename FImpl>
|
|||||||
std::vector<std::string> TDistilVectors<FImpl>::getInput(void)
|
std::vector<std::string> TDistilVectors<FImpl>::getInput(void)
|
||||||
{
|
{
|
||||||
PerambulatorName = par().perambulator;
|
PerambulatorName = par().perambulator;
|
||||||
if (PerambulatorName.empty())
|
|
||||||
{
|
|
||||||
PerambulatorName = getName();
|
|
||||||
PerambulatorName.append("_peramb");
|
|
||||||
}
|
|
||||||
NoiseVectorName = par().noise;
|
NoiseVectorName = par().noise;
|
||||||
if (NoiseVectorName.empty())
|
|
||||||
{
|
|
||||||
NoiseVectorName = PerambulatorName;
|
|
||||||
NoiseVectorName.append("_noise");
|
|
||||||
}
|
|
||||||
LapEvecName = par().lapevec;
|
LapEvecName = par().lapevec;
|
||||||
if (LapEvecName.empty())
|
|
||||||
{
|
|
||||||
LapEvecName = PerambulatorName;
|
|
||||||
LapEvecName.append("_lapevec");
|
|
||||||
}
|
|
||||||
return { PerambulatorName, NoiseVectorName, LapEvecName };
|
return { PerambulatorName, NoiseVectorName, LapEvecName };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -143,11 +143,6 @@ template <typename GImpl>
|
|||||||
std::vector<std::string> TLapEvec<GImpl>::getInput(void)
|
std::vector<std::string> TLapEvec<GImpl>::getInput(void)
|
||||||
{
|
{
|
||||||
sGaugeName = par().gauge;
|
sGaugeName = par().gauge;
|
||||||
if (sGaugeName.empty())
|
|
||||||
{
|
|
||||||
sGaugeName = getName();
|
|
||||||
sGaugeName.append( "_gauge" );
|
|
||||||
}
|
|
||||||
return std::vector<std::string>{ sGaugeName };
|
return std::vector<std::string>{ sGaugeName };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user