CHROMA
readmilc.h
Go to the documentation of this file.
1 
2 /*! \file
3  * \brief Read a MILC gauge configuration written in the 1997 format
4  */
5 
6 #ifndef __readmilc_h__
7 #define __readmilc_h__
8 
9 #include "io/milc_io.h"
10 
11 namespace Chroma {
12 
13 //! Read a MILC gauge configuration written in the 1997 format
14 /*!
15  * \ingroup io
16  *
17  * \param xml xml reader holding config info ( Modify )
18  * \param u gauge configuration ( Modify )
19  * \param cfg_file path ( Read )
20  */
21 
22 void readMILC(XMLReader& xml, multi1d<LatticeColorMatrixF>& u, const std::string& cfg_file);
23 
24 //! Read a MILC gauge configuration written in the 1997 format
25 /*!
26  * \ingroup io
27  *
28  * \param header structure holding config info ( Modify )
29  * \param u gauge configuration ( Modify )
30  * \param cfg_file path ( Read )
31  */
32 
33 void readMILC(XMLReader& xml, multi1d<LatticeColorMatrixD>& u, const std::string& cfg_file);
34 
35 //! Read a MILC gauge configuration written in the 1997 format
36 /*!
37  * \ingroup io
38  *
39  * \param header structure holding config info ( Modify )
40  * \param u gauge configuration ( Modify )
41  * \param cfg_file path ( Read )
42  */
43 
44 void readMILC(MILCGauge_t& header, multi1d<LatticeColorMatrixF>& u, const std::string& cfg_file);
45 
46 
47 } // end namespace Chroma
48 
49 #endif
void readMILC(MILCGauge_t &header, multi1d< LatticeColorMatrixF > &u, const std::string &cfg_file)
Read a MILC configuration file.
Definition: readmilc.cc:22
MILC gauge format routines.
Asqtad Staggered-Dirac operator.
Definition: klein_gord.cc:10
static multi1d< LatticeColorMatrix > u
::std::string string
Definition: gtest.h:1979