Changeset 11319 for trunk/FACT++/src/datalogger.cc
- Timestamp:
- 07/10/11 15:42:12 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/datalogger.cc
r11317 r11319 2006 2006 if (!sub.nightlyFile.IsOpen()) 2007 2007 { 2008 string partialName = CompileFileNameWithPath(fNightlyFilePath, serviceName, "fits");2008 const string partialName = CompileFileNameWithPath(fNightlyFilePath, serviceName, "fits"); 2009 2009 2010 2010 const string fileNameOnly = partialName.substr(partialName.find_last_of('/')+1, partialName.size()); … … 2738 2738 po::options_description configs("DataLogger options"); 2739 2739 configs.add_options() 2740 ("block,b", vars<string>(), "Black-list ofservices")2741 ("allow,a", vars<string>(), "White-list ofservices")2742 ("debug", po_bool(), "Debug mode. Print clear text of received service reports to log-stream")2740 ("block,b", vars<string>(), "Black-list to block services") 2741 ("allow,a", vars<string>(), "White-list to only allowe certain services") 2742 ("debug", po_bool(), "Debug mode. Print clear text of received service reports.") 2743 2743 ("group,g", vars<string>(), "Grouping of services into a single run-Fits") 2744 ("run-timeout", var<uint32_t>(), "Time out delay for old run numbers in milliseconds ")2745 ("destination-folder", var<string>(), "Base path for the nightly files")2746 ("stats-interval", var<int16_t>(), "Interval in seconds between two filesstatistics update")2747 ("no-filename-service", po_bool(), " Should the filename service be enabled?")2748 ("no-numsubs-service", po_bool(), " Should the number of subscriptions service be enabled?")2744 ("run-timeout", var<uint32_t>(), "Time out delay for old run numbers in milliseconds.") 2745 ("destination-folder", var<string>(), "Base path for the nightly and run files") 2746 ("stats-interval", var<int16_t>(), "Interval in milliseconds for write statistics update") 2747 ("no-filename-service", po_bool(), "Disable update of filename service") 2748 ("no-numsubs-service", po_bool(), "Disable update of number-of-subscriptions service") 2749 2749 ; 2750 2750
Note:
See TracChangeset
for help on using the changeset viewer.