Bridge++  Ver. 1.1.x
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
gaugeFixing.cpp
Go to the documentation of this file.
1 
14 #include "gaugeFixing.h"
15 
16 #ifdef USE_PARAMETERS_FACTORY
17 #include "parameters_factory.h"
18 #endif
19 
20 //- parameter entries
21 namespace {
22  void append_entry(Parameters& param)
23  {
24  param.Register_string("gauge_fixing_type", "NULL");
25  }
26 
27 
28 #ifdef USE_PARAMETERS_FACTORY
29  bool init_param = ParametersFactory::Register("GaugeFixing", append_entry);
30 #endif
31 }
32 //- end