- Timestamp:
- 08/03/18 13:43:35 (6 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/Configuration.cc
r19056 r19125 350 350 //! The URL of the database from which the configuration data is 351 351 //! retrieved. It should be given in the form 352 //! \li [user[:password]@]server.com[:port]/database 352 //! \li [user[:password]@]server.com[:port]/database[/comp] 353 353 //! 354 354 //! with … … 358 358 //! - port: the port to which to connect (usually obsolete) 359 359 //! - database: The name of the database containing the table 360 //! - comp: Force [comp=+] / prohibit [comp=-] compression 361 //! 362 //! The default is that connections to the SQL server are compressed 363 //! whenever the server is neither '127.0.0.1' nor 'localhost'. 364 //! Use '/+' to force compression and '/-' to prohibit compression. 360 365 //! 361 366 //! @param desc -
trunk/FACT++/src/calcsource.cc
r19122 r19125 22 22 ->required() 23 23 #endif 24 , "Database link as in\n\tuser:password@server[:port]/database .")24 , "Database link as in\n\tuser:password@server[:port]/database[/comp].") 25 25 //("source-key", var<uint32_t>(5), "") 26 26 //("source-name", var<string>(""), "") -
trunk/FACT++/src/drivectrl.cc
r19064 r19125 3158 3158 ("deviation-count", var<uint16_t>(3), "Minimum number of reported deviation below deviation-limit to get 'OnTrack'") 3159 3159 ("deviation-max", var<uint16_t>(180), "Maximum deviation in arcsec allowed to keep status 'OnTrack'") 3160 ("source-database", var<string>(), "Database link as in\n\tuser:password@server[:port]/database .")3160 ("source-database", var<string>(), "Database link as in\n\tuser:password@server[:port]/database[/comp].") 3161 3161 ("source", vars<string>(), "Additional source entry in the form \"name,hh:mm:ss,dd:mm:ss\"") 3162 3162 ; -
trunk/FACT++/src/fits2sql.cc
r19120 r19125 43 43 ->required() 44 44 #endif 45 , "Database link as in\n\tuser:password@server[:port]/database .")45 , "Database link as in\n\tuser:password@server[:port]/database[/comp].") 46 46 ("file", var<string>("") 47 47 #if BOOST_VERSION >= 104200 -
trunk/FACT++/src/makedata.cc
r18960 r19125 19 19 ("source-name", var<string>(), "Source name") 20 20 ("date-time", var<string>(), "SQL time (UTC)") 21 ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database .")21 ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database[/comp].") 22 22 ("max-current", var<double>(75), "Maximum current to display in other plots.") 23 23 ("max-zd", var<double>(75), "Maximum zenith distance to display in other plots") -
trunk/FACT++/src/makeplots.cc
r18959 r19125 48 48 //("dec", var<double>(), "Source declination") 49 49 ("date-time", var<string>(), "SQL time (UTC)") 50 ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database .")50 ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database[/comp].") 51 51 ("max-current", var<double>(100), "Maximum current to display in other plots.") 52 52 ("max-zd", var<double>(50), "Maximum zenith distance to display in other plots") -
trunk/FACT++/src/makeschedule.cc
r18959 r19125 19 19 control.add_options() 20 20 ("date", var<string>(), "SQL time (UTC), e.g. '2016-12-24' (equiv. '2016-12-24 12:00:00' to '2016-12-25 11:59:59')") 21 ("source-database", var<string>()->required(), "Database link as in\n\tuser:password@server[:port]/database .")22 ("schedule-database", var<string>(), "Database link as in\n\tuser:password@server[:port]/database .")21 ("source-database", var<string>()->required(), "Database link as in\n\tuser:password@server[:port]/database[/comp].") 22 ("schedule-database", var<string>(), "Database link as in\n\tuser:password@server[:port]/database[/comp].") 23 23 ("max-current", var<double>(90), "Global maximum current limit in uA") 24 24 ("max-zd", var<double>(75), "Global zenith distance limit in degree") -
trunk/FACT++/src/root2sql.cc
r19120 r19125 47 47 ->required() 48 48 #endif 49 , "Database link as in\n\tuser:password@server[:port]/database .")49 , "Database link as in\n\tuser:password@server[:port]/database[/comp].") 50 50 ("file", var<string>("") 51 51 #if BOOST_VERSION >= 104200 -
trunk/FACT++/src/scheduler.cc
r12954 r19125 727 727 ->required() 728 728 #endif 729 , "Database link as in\n\tuser:password@server[:port]/database \nOverwrites options from the default configuration file.")729 , "Database link as in\n\tuser:password@server[:port]/database.") 730 730 ("schedule", var<string>(), "") 731 731 ("mintime", var<int>(), "minimum observation time") -
trunk/FACT++/src/smartfact.cc
r19064 r19125 3538 3538 ("pixel-map-file", var<string>()->required(), "Pixel mapping file. Used here to get the default reference voltage") 3539 3539 ("path", var<string>("www/smartfact/data"), "Output path for the data-files") 3540 ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database .")3540 ("source-database", var<string>(""), "Database link as in\n\tuser:password@server[:port]/database[/comp].") 3541 3541 ("client", po_bool(false), "For a standalone client choose this option.") 3542 3542 ;
Note:
See TracChangeset
for help on using the changeset viewer.