CHROMA
enum_md_integrator_type_io.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 /*! \file
3  * \brief MD integrator enum
4  */
5 #ifndef enum_md_integrator_type_io_h
6 #define enum_md_integrator_type_io_h
7 
8 #include "chromabase.h"
9 #include <string>
10 #include "singleton.h"
12 
13 
14 
15 namespace Chroma {
16 
17  /*!
18  * Types and structures
19  *
20  * \ingroup io
21  *
22  * @{
23  */
24  //! MDIntegrator type
28  };
29 
30 
31  namespace MDIntegratorTypeEnv {
32  extern const std::string typeIDString;
33  extern bool registered;
34  bool registerAll(void); // Forward declaration
35  }
36 
37  // A singleton to hold the typemap
39 
40  // Reader and writer
41 
42  //! Read an MD Integrator Type enum
43  void read(XMLReader& r, const std::string& path, MDIntegratorType& t);
44 
45  //! Write an MD Integrator Type enum
46  void write(XMLWriter& w, const std::string& path, const MDIntegratorType& t);
47 
48  /*! @} */ // end of group io
49 
50 }
51 #endif
Primary include file for CHROMA library code.
Enum std::map.
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.
SingletonHolder< EnumTypeMap< MDIntegratorType > > theMDIntegratorTypeMap
MDIntegratorType
MDIntegrator type.
int t
Definition: meslate.cc:37
Asqtad Staggered-Dirac operator.
Definition: klein_gord.cc:10
::std::string string
Definition: gtest.h:1979
Singleton support.