FACT++  1.0
void SetupConfiguration ( Configuration conf)

Definition at line 1359 of file feedback.cc.

References Configuration::AddOptions(), and po_bool().

Referenced by main().

1360 {
1361  po::options_description control("Feedback options");
1362  control.add_options()
1363  ("quiet,q", po_bool(true), "Disable printing more information on average overvoltagecontents of all received messages (except dynamic data) in clear text.")
1364  ("pixel-map-file", var<string>()->required(), "Pixel mapping file. Used here to get the default reference voltage.")
1365  ("current-request-interval", var<uint16_t>(1000), "Interval between two current requests.")
1366  ("num-calib-ignore", var<uint16_t>(30), "Number of current requests to be ignored before averaging")
1367  ("num-calib-average", var<uint16_t>(300), "Number of current requests to be averaged")
1368  ("temp-coefficient", var<double>()->required(), "Temp. coefficient [V/K]")
1369  ("offset-file", var<string>(), "File with operation voltage offsets")
1370  ;
1371 
1372  conf.AddOptions(control);
1373 }
void AddOptions(const po::options_description &opt, bool visible=true)
Definition: Configuration.h:92
po::typed_value< bool > * po_bool(bool def=false)

+ Here is the call graph for this function:

+ Here is the caller graph for this function: