Changeset 19108
- Timestamp:
- 07/31/18 14:53:30 (6 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fits2sql.cc
r19105 r19108 52 52 #endif 53 53 , "Database link as in\n\tuser:password@server[:port]/database.") 54 ("file", var<string>(""), "The root file to read from") 54 ("file", var<string>("") 55 #if BOOST_VERSION >= 104200 56 ->required() 57 #endif 58 , "The root file to read from") 55 59 ("force", po_switch(), "Force processing even if there is no database connection") 56 60 ("create", po_switch(), "Create the database if not existing") … … 181 185 "In case of succes, 0 is returned, a value>0 otherwise.\n" 182 186 "\n" 183 "Usage: fits2sql [options] rootfile.root\n"187 "Usage: fits2sql [options] --uri URI fitsfile.fits[.gz]\n" 184 188 "\n" 185 189 ; -
trunk/FACT++/src/root2sql.cc
r19105 r19108 48 48 #endif 49 49 , "Database link as in\n\tuser:password@server[:port]/database.") 50 ("file", var<string>(""), "The root file to read from") 50 ("file", var<string>("") 51 #if BOOST_VERSION >= 104200 52 ->required() 53 #endif 54 , "The root file to read from") 51 55 ("force", po_switch(), "Force processing even if there is no database connection") 52 56 ("create", po_switch(), "Create the database if not existing") … … 181 185 "In case of succes, 0 is returned, a value>0 otherwise.\n" 182 186 "\n" 183 "Usage: root2sql [options] rootfile.root\n"187 "Usage: root2sql [options] -uri URI rootfile.root\n" 184 188 "\n" 185 189 ;
Note:
See TracChangeset
for help on using the changeset viewer.