CHROMA
nef_fermact_params_w.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 /*! \file
3  * \brief Parameters for Clover fermion action
4  */
5 
6 #ifndef __nef_fermact_params_w_h__
7 #define __nef_fermact_params_w_h__
8 
9 #include "io/aniso_io.h"
10 
11 namespace Chroma
12 {
13  //! Params for clover ferm acts
14  /*! \ingroup fermacts */
16  {
18  NEFFermActParams(XMLReader& in, const std::string& path);
19 
20  Real Mass; /* The fermion Mass m_f */
21  Real OverMass; /* The domain wall height. In our convention it is positive */
22 
23  multi1d<Real> b5; /* For general construction these need to be arrays */
24  multi1d<Real> c5;
25 
26  int N5; /* Length of 5th dim */
27  };
28 
29 
30  // Reader/writers
31  /*! \ingroup fermacts */
32  void read(XMLReader& xml, const std::string& path, NEFFermActParams& param);
33 
34  /*! \ingroup fermacts */
35  void write(XMLWriter& xml, const std::string& path, const NEFFermActParams& param);
36 }
37 
38 #endif
Anisotropy parameters.
void read(XMLReader &xml, const std::string &path, AsqtadFermActParams &param)
Read parameters.
void write(XMLWriter &xml, const std::string &path, const AsqtadFermActParams &param)
Writer parameters.
Asqtad Staggered-Dirac operator.
Definition: klein_gord.cc:10
static QDP_ColorVector * in
::std::string string
Definition: gtest.h:1979
Params for clover ferm acts.
NEFFermActParams()
Default constructor.