Changeset 15110
- Timestamp:
- 03/18/13 16:42:47 (12 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/biasctrl.cc
r14615 r15110 2131 2131 if (!conf.Has("bias-map-file") && !conf.Has("bias-database")) 2132 2132 { 2133 T::Error("Neither bias-map-file not bias-d tabase specified.");2133 T::Error("Neither bias-map-file not bias-database specified."); 2134 2134 return 5; 2135 2135 } … … 2188 2188 ("volt-max-abs", var<float>(75), "Absolte upper limit for the voltage (in Volts)") 2189 2189 ("volt-max-rel", var<float>(2.5), "Relative upper limit for the voltage w.r.t. the G-APD reference voltage (in Volts)") 2190 ("bias-map-file", var<string>( "GAPDmap.txt"),"File with nominal and offset voltages for each channel.")2191 ("bias-database", var<string>( ""),"")2190 ("bias-map-file", var<string>(), "File with nominal and offset voltages for each channel.") 2191 ("bias-database", var<string>(), "") 2192 2192 ; 2193 2193 -
trunk/FACT++/src/feedback.cc
r15031 r15110 1500 1500 po::options_description control("Feedback options"); 1501 1501 control.add_options() 1502 ("pixel-map-file", var<string>( "FACTmapV5a.txt"), "Pixel mapping file. Used here to get the default reference voltage.")1502 ("pixel-map-file", var<string>()->required(), "Pixel mapping file. Used here to get the default reference voltage.") 1503 1503 ("current-request-interval", var<uint16_t>(1000), "Interval between two current requests.") 1504 1504 ("num-calib-ignore", var<uint16_t>(30), "Number of current requests to be ignored before averaging") -
trunk/FACT++/src/ratecontrol.cc
r15091 r15110 846 846 control.add_options() 847 847 ("quiet,q", po_bool(), "Disable printing more informations during rate control.") 848 ("pixel-map-file", var<string>( "FACTmapV5a.txt"), "Pixel mapping file. Used here to get the default reference voltage.")848 ("pixel-map-file", var<string>()->required(), "Pixel mapping file. Used here to get the default reference voltage.") 849 849 //("max-wait", var<uint16_t>(150), "The maximum number of seconds to wait to get the anticipated resolution for a point.") 850 850 // ("resolution", var<double>(0.05) , "The minimum resolution required for a single data point.") -
trunk/FACT++/src/smartfact.cc
r15081 r15110 3041 3041 po::options_description control("Smart FACT"); 3042 3042 control.add_options() 3043 ("pixel-map-file", var<string>( "FACTmapV5a.txt"), "Pixel mapping file. Used here to get the default reference voltage")3043 ("pixel-map-file", var<string>()->required(), "Pixel mapping file. Used here to get the default reference voltage") 3044 3044 ("path", var<string>("www/smartfact/data"), "Output path for the data-files") 3045 3045 ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database.")
Note:
See TracChangeset
for help on using the changeset viewer.