2018-08-07 18:40:48 +01:00
|
|
|
/*************************************************************************************
|
|
|
|
|
|
|
|
Grid physics library, www.github.com/paboyle/Grid
|
|
|
|
|
|
|
|
Source file: extras/Hadrons/Modules/MScalar/ScalarVP.hpp
|
|
|
|
|
|
|
|
Copyright (C) 2015-2018
|
|
|
|
|
2018-08-14 12:15:24 +01:00
|
|
|
Author: Antonin Portelli <antonin.portelli@me.com>
|
2018-08-07 18:40:48 +01:00
|
|
|
Author: James Harrison <jch1g10@soton.ac.uk>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
|
|
|
|
See the full license in the file "LICENSE" in the top level distribution directory
|
|
|
|
*************************************************************************************/
|
|
|
|
/* END LEGAL */
|
2017-06-07 17:42:00 +01:00
|
|
|
#ifndef Hadrons_MScalar_ScalarVP_hpp_
|
|
|
|
#define Hadrons_MScalar_ScalarVP_hpp_
|
2017-03-21 11:39:46 +00:00
|
|
|
|
2018-08-28 15:00:40 +01:00
|
|
|
#include <Hadrons/Global.hpp>
|
|
|
|
#include <Hadrons/Module.hpp>
|
|
|
|
#include <Hadrons/ModuleFactory.hpp>
|
2017-03-21 11:39:46 +00:00
|
|
|
|
|
|
|
BEGIN_HADRONS_NAMESPACE
|
|
|
|
|
|
|
|
/******************************************************************************
|
2018-01-26 16:33:48 +00:00
|
|
|
* Scalar vacuum polarisation *
|
2017-03-21 11:39:46 +00:00
|
|
|
******************************************************************************/
|
|
|
|
BEGIN_MODULE_NAMESPACE(MScalar)
|
|
|
|
|
2017-03-27 15:02:16 +01:00
|
|
|
class ScalarVPPar: Serializable
|
2017-03-21 11:39:46 +00:00
|
|
|
{
|
|
|
|
public:
|
2017-03-27 15:02:16 +01:00
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(ScalarVPPar,
|
2017-03-24 11:59:09 +00:00
|
|
|
std::string, emField,
|
2017-06-08 17:43:39 +01:00
|
|
|
std::string, scalarProp,
|
2017-06-12 18:27:32 +01:00
|
|
|
std::string, output,
|
|
|
|
std::vector<std::string>, outputMom);
|
2017-03-21 11:39:46 +00:00
|
|
|
};
|
|
|
|
|
2017-03-27 15:02:16 +01:00
|
|
|
class TScalarVP: public Module<ScalarVPPar>
|
2017-03-21 11:39:46 +00:00
|
|
|
{
|
2017-03-27 13:24:51 +01:00
|
|
|
public:
|
|
|
|
SCALAR_TYPE_ALIASES(SIMPL,);
|
|
|
|
typedef PhotonR::GaugeField EmField;
|
|
|
|
typedef PhotonR::GaugeLinkField EmComp;
|
2018-02-07 20:31:50 +00:00
|
|
|
class Result: Serializable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
class Projection: Serializable
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(Projection,
|
|
|
|
std::vector<int>, momentum,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, pi,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, pi_free,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, pi_2E,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, pi_2T,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, pi_S,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, pi_4C,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, pi_X,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, pi_srcT,
|
|
|
|
std::vector<std::vector<std::vector<Complex>>>, pi_snkT);
|
|
|
|
};
|
|
|
|
GRID_SERIALIZABLE_CLASS_MEMBERS(Result,
|
|
|
|
std::vector<int>, lattice_size,
|
|
|
|
double, mass,
|
|
|
|
double, charge,
|
|
|
|
std::vector<Projection>, projection);
|
|
|
|
};
|
2017-03-21 11:39:46 +00:00
|
|
|
public:
|
|
|
|
// constructor
|
2017-03-27 15:02:16 +01:00
|
|
|
TScalarVP(const std::string name);
|
2017-03-21 11:39:46 +00:00
|
|
|
// destructor
|
2018-05-22 16:16:21 +01:00
|
|
|
virtual ~TScalarVP(void) {};
|
2017-03-21 11:39:46 +00:00
|
|
|
// dependency relation
|
|
|
|
virtual std::vector<std::string> getInput(void);
|
|
|
|
virtual std::vector<std::string> getOutput(void);
|
2018-01-26 16:33:48 +00:00
|
|
|
protected:
|
2017-03-21 11:39:46 +00:00
|
|
|
// setup
|
|
|
|
virtual void setup(void);
|
|
|
|
// execution
|
|
|
|
virtual void execute(void);
|
2017-03-27 16:49:18 +01:00
|
|
|
private:
|
2018-01-26 16:33:48 +00:00
|
|
|
void makeCaches(void);
|
2018-01-23 17:07:45 +00:00
|
|
|
// conserved vector two-point contraction
|
|
|
|
void vpContraction(ScalarField &vp,
|
|
|
|
ScalarField &prop_0_x, ScalarField &prop_nu_x,
|
|
|
|
TComplex u_src, ScalarField &u_snk, int mu);
|
|
|
|
// conserved vector two-point contraction with unit gauge link at sink
|
|
|
|
void vpContraction(ScalarField &vp,
|
|
|
|
ScalarField &prop_0_x, ScalarField &prop_nu_x,
|
|
|
|
TComplex u_src, int mu);
|
|
|
|
// write momentum-projected vacuum polarisation to file(s)
|
2018-02-07 20:31:50 +00:00
|
|
|
void project(std::vector<Complex> &projection, const ScalarField &vp,
|
|
|
|
int i_p);
|
2018-01-23 17:07:45 +00:00
|
|
|
// momentum-space Delta_1 insertion
|
2017-04-10 16:33:54 +01:00
|
|
|
void momD1(ScalarField &s, FFT &fft);
|
2017-03-27 15:02:16 +01:00
|
|
|
private:
|
2018-01-26 16:33:48 +00:00
|
|
|
bool momPhasesDone_;
|
2017-05-03 12:53:41 +01:00
|
|
|
std::string freeMomPropName_, GFSrcName_,
|
|
|
|
prop0Name_, propQName_,
|
2018-01-26 16:33:48 +00:00
|
|
|
propSunName_, propTadName_,
|
|
|
|
fftName_;
|
|
|
|
std::vector<std::string> phaseName_, muPropQName_,
|
|
|
|
momPhaseName_;
|
2018-01-19 17:14:11 +00:00
|
|
|
std::vector<std::vector<std::string> > vpTensorName_;
|
2018-01-26 16:33:48 +00:00
|
|
|
std::vector<ScalarField *> phase_, momPhase_;
|
2017-03-21 11:39:46 +00:00
|
|
|
};
|
|
|
|
|
2018-05-22 16:16:21 +01:00
|
|
|
MODULE_REGISTER(ScalarVP, TScalarVP, MScalar);
|
2017-03-21 11:39:46 +00:00
|
|
|
|
|
|
|
END_MODULE_NAMESPACE
|
|
|
|
|
|
|
|
END_HADRONS_NAMESPACE
|
|
|
|
|
2017-06-07 17:42:00 +01:00
|
|
|
#endif // Hadrons_MScalar_ScalarVP_hpp_
|