mirror of
https://github.com/paboyle/Grid.git
synced 2024-11-14 01:35:36 +00:00
QED Gimpl moved in Photon.h
This commit is contained in:
parent
8c3cc32364
commit
afbf7d4c37
@ -39,27 +39,6 @@ BEGIN_HADRONS_NAMESPACE
|
|||||||
******************************************************************************/
|
******************************************************************************/
|
||||||
BEGIN_MODULE_NAMESPACE(MGauge)
|
BEGIN_MODULE_NAMESPACE(MGauge)
|
||||||
|
|
||||||
template <class S>
|
|
||||||
class QedGimpl
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
typedef S Simd;
|
|
||||||
|
|
||||||
template <typename vtype>
|
|
||||||
using iImplGaugeLink = iScalar<iScalar<iScalar<vtype>>>;
|
|
||||||
template <typename vtype>
|
|
||||||
using iImplGaugeField = iVector<iScalar<iScalar<vtype>>, Nd>;
|
|
||||||
|
|
||||||
typedef iImplGaugeLink<Simd> SiteGaugeLink;
|
|
||||||
typedef iImplGaugeField<Simd> SiteGaugeField;
|
|
||||||
|
|
||||||
typedef Lattice<SiteGaugeLink> GaugeLinkField;
|
|
||||||
typedef Lattice<SiteGaugeField> GaugeField;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef QedGimpl<vComplex> QedGimplR;
|
|
||||||
typedef Photon<QedGimplR> PhotonR;
|
|
||||||
|
|
||||||
class StochEmPar: Serializable
|
class StochEmPar: Serializable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -5,29 +5,7 @@ using namespace Grid;
|
|||||||
using namespace QCD;
|
using namespace QCD;
|
||||||
using namespace QedFVol;
|
using namespace QedFVol;
|
||||||
|
|
||||||
template <class S>
|
|
||||||
class QedGimpl
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
typedef S Simd;
|
|
||||||
|
|
||||||
template <typename vtype>
|
|
||||||
using iImplGaugeLink = iScalar<iScalar<iScalar<vtype>>>;
|
|
||||||
template <typename vtype>
|
|
||||||
using iImplGaugeField = iVector<iScalar<iScalar<vtype>>, Nd>;
|
|
||||||
|
|
||||||
typedef iImplGaugeLink<Simd> SiteGaugeLink;
|
|
||||||
typedef iImplGaugeField<Simd> SiteGaugeField;
|
|
||||||
|
|
||||||
typedef Lattice<SiteGaugeLink> GaugeLinkField; // bit ugly naming; polarised
|
|
||||||
// gauge field, lorentz... all
|
|
||||||
// ugly
|
|
||||||
typedef Lattice<SiteGaugeField> GaugeField;
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef QedGimpl<vComplex> QedGimplR;
|
|
||||||
typedef PeriodicGaugeImpl<QedGimplR> QedPeriodicGimplR;
|
typedef PeriodicGaugeImpl<QedGimplR> QedPeriodicGimplR;
|
||||||
typedef Photon<QedGimplR> PhotonR;
|
|
||||||
typedef PhotonR::GaugeField EmField;
|
typedef PhotonR::GaugeField EmField;
|
||||||
typedef PhotonR::GaugeLinkField EmComp;
|
typedef PhotonR::GaugeLinkField EmComp;
|
||||||
|
|
||||||
|
@ -28,9 +28,27 @@
|
|||||||
#ifndef QCD_PHOTON_ACTION_H
|
#ifndef QCD_PHOTON_ACTION_H
|
||||||
#define QCD_PHOTON_ACTION_H
|
#define QCD_PHOTON_ACTION_H
|
||||||
|
|
||||||
|
|
||||||
namespace Grid{
|
namespace Grid{
|
||||||
namespace QCD{
|
namespace QCD{
|
||||||
|
template <class S>
|
||||||
|
class QedGimpl
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
typedef S Simd;
|
||||||
|
|
||||||
|
template <typename vtype>
|
||||||
|
using iImplGaugeLink = iScalar<iScalar<iScalar<vtype>>>;
|
||||||
|
template <typename vtype>
|
||||||
|
using iImplGaugeField = iVector<iScalar<iScalar<vtype>>, Nd>;
|
||||||
|
|
||||||
|
typedef iImplGaugeLink<Simd> SiteGaugeLink;
|
||||||
|
typedef iImplGaugeField<Simd> SiteGaugeField;
|
||||||
|
|
||||||
|
typedef Lattice<SiteGaugeLink> GaugeLinkField;
|
||||||
|
typedef Lattice<SiteGaugeField> GaugeField;
|
||||||
|
};
|
||||||
|
|
||||||
|
typedef QedGimpl<vComplex> QedGimplR;
|
||||||
|
|
||||||
template<class Gimpl>
|
template<class Gimpl>
|
||||||
class Photon
|
class Photon
|
||||||
@ -56,6 +74,8 @@ namespace QCD{
|
|||||||
ZmScheme zmScheme_;
|
ZmScheme zmScheme_;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
typedef Photon<QedGimplR> PhotonR;
|
||||||
|
|
||||||
template<class Gimpl>
|
template<class Gimpl>
|
||||||
Photon<Gimpl>::Photon(Gauge gauge, ZmScheme zmScheme)
|
Photon<Gimpl>::Photon(Gauge gauge, ZmScheme zmScheme)
|
||||||
: gauge_(gauge), zmScheme_(zmScheme)
|
: gauge_(gauge), zmScheme_(zmScheme)
|
||||||
|
Loading…
Reference in New Issue
Block a user