Bridge++  Ver. 1.2.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
action_F_Rational_Frame_SF.h
Go to the documentation of this file.
1 
14 #ifndef ACTION_FRATIONAL_FRAME_SF_INCLUDED
15 #define ACTION_FRATIONAL_FRAME_SF_INCLUDED
16 
17 #include "action.h"
18 #include "fopr_Rational.h"
19 #include "force_F_Rational.h"
20 
21 #include "field_G_SF.h"
22 #include "field_F_SF.h"
23 
24 #include "bridgeIO.h"
25 using Bridge::vout;
26 
28 
37 //- parameters class
39 {
40  public:
42 };
43 //- end
44 
46  public:
47  static const std::string class_name;
48 
49  private:
50  std::string m_label; // label of action
51 
55 
58 
61 
62 
63  public:
65  Action_F_Rational_frame_SF(Fopr *fopr_langev, Fopr *fopr_H,
66  Force *fopr_force_MD)
67  {
68  m_fopr_langev = fopr_langev;
69  m_fopr_H = fopr_H;
70  m_fopr_force_MD = fopr_force_MD;
71  setup();
72  }
73 
76  {
77  }
78 
80  void set_parameters(const Parameters& params);
81 
83  void set_label(std::string label)
84  {
85  m_label = label;
86  vout.detailed(m_vl, " label: %s\n", m_label.c_str());
87  }
88 
90  std::string get_label()
91  {
92  return m_label;
93  }
94 
96  void set_config(Field *U)
97  {
98  m_U = U;
100  m_fopr_H->set_config(U);
102  }
103 
106  {
107  m_status_linkv = 0;
108  }
109 
111  double langevin(RandomNumbers *);
112 
114  double calcH();
115 
117  const Field force();
118 
119  private:
120 
122  void setup();
123 
125  void tidyup();
126 };
127 #endif
BridgeIO vout
Definition: bridgeIO.cpp:207
void detailed(const char *format,...)
Definition: bridgeIO.cpp:50
void notify_linkv()
to be called when link variable is updated.
action class for RHMC, with externally constructed Fopr_Rational.
double calcH()
calculation of Hamiltonian.
void set_label(std::string label)
set the label of action.
virtual void set_config(Field *)=0
setting pointer to the gauge configuration.
Container of Field-type object.
Definition: field.h:37
virtual void set_config(Field *)=0
Base class of fermion force calculation.
Definition: force.h:34
Class for parameters.
Definition: parameters.h:40
Base class of HMC action class family.
Definition: action.h:35
Action_F_Rational_frame_SF(Fopr *fopr_langev, Fopr *fopr_H, Force *fopr_force_MD)
constructor requires pointers to Fopr and Force instances.
void tidyup()
destruct class instances constructed in setup()
static const std::string class_name
const Field force()
returns the force for updating conjugate momentum.
~Action_F_Rational_frame_SF()
destructor. constructed instances are deconstructed in tydyup().
Bridge::VerboseLevel m_vl
Definition: action.h:64
Base class of random number generators.
Definition: randomNumbers.h:40
void set_parameters(const Parameters &params)
setting parameters and creating class instances.
std::string get_label()
returns the label of action.
double langevin(RandomNumbers *)
Langevin step called at the beginning of HMC.
void setup()
creating instances. called from set_parameters().
Base class of fermion operator family.
Definition: fopr.h:39
void set_config(Field *U)
setting gauge configuration.