CHROMA
fermact_factory_w.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 /*! \file
3  * \brief Fermion action factories
4  */
5 
6 #ifndef __fermact_factory_w_h__
7 #define __fermact_factory_w_h__
8 
9 #include "singleton.h"
10 #include "objfactory.h"
11 #include "wilstype_fermact_w.h"
12 
13 namespace Chroma
14 {
15  //! Wilson-like fermion factory (foundry)
16  typedef SingletonHolder<
17  ObjectFactory<FermionAction<LatticeFermion,
18  multi1d<LatticeColorMatrix>,
19  multi1d<LatticeColorMatrix> >,
21  TYPELIST_2(XMLReader&, const std::string&),
22  FermionAction<LatticeFermion,
23  multi1d<LatticeColorMatrix>,
24  multi1d<LatticeColorMatrix> >* (*)(XMLReader&,
27 
28 
29  //! Wilson-like fermion 4D factory (foundry)
30  typedef SingletonHolder<
31  ObjectFactory<WilsonTypeFermAct<LatticeFermion,
32  multi1d<LatticeColorMatrix>,
33  multi1d<LatticeColorMatrix> >,
35  TYPELIST_2(XMLReader&, const std::string&),
36  WilsonTypeFermAct<LatticeFermion,
37  multi1d<LatticeColorMatrix>,
38  multi1d<LatticeColorMatrix> >* (*)(XMLReader&,
39  const std::string&),
42 
43 
44  //! Wilson-like fermion array factory (foundry)
45  typedef SingletonHolder<
46  ObjectFactory<WilsonTypeFermAct5D<LatticeFermion,
47  multi1d<LatticeColorMatrix>,
48  multi1d<LatticeColorMatrix> >,
50  TYPELIST_2(XMLReader&, const std::string&),
51  WilsonTypeFermAct5D<LatticeFermion,
52  multi1d<LatticeColorMatrix>,
53  multi1d<LatticeColorMatrix> >* (*)(XMLReader&,
54  const std::string&),
57 
58 }
59 
60 
61 #endif
Base class for quadratic matter actions (e.g., fermions)
Definition: fermact.h:53
Object factory class.
Definition: objfactory.h:82
Wilson-like fermion actions.
Definition: fermact.orig.h:403
Wilson-like fermion actions.
Definition: fermact.orig.h:344
Asqtad Staggered-Dirac operator.
Definition: klein_gord.cc:10
SingletonHolder< ObjectFactory< WilsonTypeFermAct5D< LatticeFermion, multi1d< LatticeColorMatrix >, multi1d< LatticeColorMatrix > >, std::string, TYPELIST_2(XMLReader &, const std::string &), WilsonTypeFermAct5D< LatticeFermion, multi1d< LatticeColorMatrix >, multi1d< LatticeColorMatrix > > *(*)(XMLReader &, const std::string &), StringFactoryError > > TheWilsonTypeFermAct5DFactory
Wilson-like fermion array factory (foundry)
SingletonHolder< ObjectFactory< WilsonTypeFermAct< LatticeFermion, multi1d< LatticeColorMatrix >, multi1d< LatticeColorMatrix > >, std::string, TYPELIST_2(XMLReader &, const std::string &), WilsonTypeFermAct< LatticeFermion, multi1d< LatticeColorMatrix >, multi1d< LatticeColorMatrix > > *(*)(XMLReader &, const std::string &), StringFactoryError > > TheWilsonTypeFermActFactory
Wilson-like fermion 4D factory (foundry)
SingletonHolder< ObjectFactory< FermionAction< LatticeFermion, multi1d< LatticeColorMatrix >, multi1d< LatticeColorMatrix > >, std::string, TYPELIST_2(XMLReader &, const std::string &), FermionAction< LatticeFermion, multi1d< LatticeColorMatrix >, multi1d< LatticeColorMatrix > > *(*)(XMLReader &, const std::string &), StringFactoryError > > TheFermionActionFactory
Wilson-like fermion factory (foundry)
::std::string string
Definition: gtest.h:1979
Factory class for objects from XML input.
Singleton support.
#define TYPELIST_2(T1, T2)
Definition: typelist.h:43
Wilson-like fermion actions.