Changeset 11319


Ignore:
Timestamp:
07/10/11 15:42:12 (13 years ago)
Author:
tbretz
Message:
Updated program options description.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/datalogger.cc

    r11317 r11319  
    20062006    if (!sub.nightlyFile.IsOpen())
    20072007    {
    2008         string partialName = CompileFileNameWithPath(fNightlyFilePath, serviceName, "fits");
     2008        const string partialName = CompileFileNameWithPath(fNightlyFilePath, serviceName, "fits");
    20092009
    20102010        const string fileNameOnly = partialName.substr(partialName.find_last_of('/')+1, partialName.size());
     
    27382738    po::options_description configs("DataLogger options");
    27392739    configs.add_options()
    2740         ("block,b",             vars<string>(),  "Black-list of services")
    2741         ("allow,a",             vars<string>(),  "White-list of services")
    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.")
    27432743        ("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 files statistics 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")
    27492749        ;
    27502750
Note: See TracChangeset for help on using the changeset viewer.