FACT++  1.0
void SetupConfiguration ( Configuration conf)

Definition at line 3441 of file smartfact.cc.

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

Referenced by main().

3442 {
3443  po::options_description control("Smart FACT");
3444  control.add_options()
3445  ("pixel-map-file", var<string>()->required(), "Pixel mapping file. Used here to get the default reference voltage")
3446  ("path", var<string>("www/smartfact/data"), "Output path for the data-files")
3447  ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database.")
3448  ("client", po_bool(false), "For a standalone client choose this option.")
3449  ;
3450 
3451  conf.AddOptions(control);
3452 }
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: