FACT++  1.0
void SetupConfiguration ( Configuration conf)

Definition at line 888 of file fscctrl.cc.

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

Referenced by main().

889 {
890  po::options_description control("FSC control options");
891  control.add_options()
892  ("no-dim", po_bool(), "Disable dim services")
893  ("addr,a", var<string>("localhost:5000"), "Network address of FSC")
894  ("sensor-pos-file", var<string>()->required(), "File with the positions of the 31 temperature sensors")
895  ("patch-pos-file", var<string>()->required(), "File with the positions of the 320 bias patches")
896  ("quiet,q", po_bool(true), "Disable printing contents of all received messages (except dynamic data) in clear text.")
897  ;
898 
899  conf.AddOptions(control);
900 }
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: