CHROMA
inline_milc_write_stag_source.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 /*! \file
3  * \brief Inline task to read a USQCD DD Pairs Prop
4  *
5  *
6  */
7 
8 #ifndef __inline_milc_write_stag_source_h__
9 #define __inline_milc_write_stag_source_h__
10 
11 #include "chromabase.h"
13 #include "io/xml_group_reader.h"
14 
15 namespace Chroma
16 {
17  /*! \ingroup inlineio */
18  namespace InlineMILCWriteStagSourceEnv
19  {
20  extern const std::string name;
21  bool registerAll();
22  }
23 
24  //! Parameter structure
25  /*! \ingroup inlineio */
27  {
29  InlineMILCWriteStagSourceParams(XMLReader& xml_in, const std::string& path);
30  void write(XMLWriter& xml_out, const std::string& path);
31 
32  unsigned long frequency;
33 
34  // We will recreate the source from the header
36  int t_slice;
37 
39  QDP_volfmt_t qio_volfmt;
40  QDP_serialparallel_t parallel_io;
43  };
44 
45  //! Inline writing of memory objects
46  /*! \ingroup inlineio */
48  {
49  public:
53 
54  unsigned long getFrequency(void) const {return params.frequency;}
55 
56  //! Do the writing
57  void operator()(const unsigned long update_no,
58  XMLWriter& xml_out);
59 
60  private:
61  void func(unsigned long update_no, XMLWriter& xml_out);
63  };
64 
65 }
66 
67 #endif
Abstract inline measurements.
Primary include file for CHROMA library code.
Inline writing of memory objects.
void func(unsigned long update_no, XMLWriter &xml_out)
InlineMILCWriteStagSource(const InlineMILCWriteStagSourceParams &p)
void operator()(const unsigned long update_no, XMLWriter &xml_out)
Do the writing.
InlineMILCWriteStagSourceParams params
unsigned long getFrequency(void) const
Tell me how often I should measure this beastie.
InlineMILCWriteStagSource(const InlineMILCWriteStagSource &p)
bool registerAll()
Register all the factories.
Asqtad Staggered-Dirac operator.
Definition: klein_gord.cc:10
::std::string string
Definition: gtest.h:1979
void write(XMLWriter &xml_out, const std::string &path)
Read an XML group as a std::string.