Skip to content
Snippets Groups Projects
Commit 13acc95e authored by Kipp Cannon's avatar Kipp Cannon
Browse files

gstlal_inspiral_make_snr_pdf: fix typo in help message

parent 8e73d6d6
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ def parse_command_line():
description = ""
)
parser.add_option("-f", "--full", action = "store_true", help = "Generate SNR PDFs for all possible horizon distance ratios as defined by the SNR PDF mechanism's internal quantization system. Use --instruments to select the detector network to model (required). A PDF will be constructed for every combination of --min-instruments or more instruments from the set. When --full enabled, any --horizon-distances options and/or PSD files are ignored. See also --full-fragment for information on parallelization.")
parser.add_option("-f", "--full", action = "store_true", help = "Generate SNR PDFs for all possible horizon distance ratios as defined by the SNR PDF mechanism's internal quantization system. Use --instruments to select the detector network to model (required). A PDF will be constructed for every combination of --min-instruments or more instruments from the set. When --full is enabled, any --horizon-distances options and/or PSD files are ignored. See also --full-fragment for information on parallelization.")
parser.add_option("--full-fragment", metavar = "n/m", default = "1/1", help = "Enable parallelization of --full by selecting a fragment of the full SNR PDFs sequence to generate. When --full is enabled, the iteration over SNR PDFs employs a reproducible, deterministic, sequence. That sequence is divided into m (m >= 1) approximately equal-sized intervals, and only the SNR PDFs from the n-th interval (1 <= n <= m) of the sequence will be constructed. Afterwards, the files generated by several jobs can be combined by re-invoking the program using the --seed or --seed-cache options to obtain the complete SNR PDF collection. The format of this option is \"n/m\", and the default is \"1/1\", which causes all SNR PDFs to be constructed.")
parser.add_option("--horizon-distances", metavar = "instrument=distance[,instrument=distance,...]", action = "append", help = "Cache SNR PDFs for these instruments and horizon distances. Format is, e.g., H1=120,L1=120,V1=48. Units for distance are irrelevant (PDFs depend only on their ratios). A PDF will be constructed for every combination of --min-instruments or more instruments from the set. All --horizon-distances must list the same instruments (if an instrument is off set its horizon distance to 0).")
parser.add_option("--horizon-distance-flow", metavar = "Hz", default = 10., type = "float", help = "When obtaining horizon distances from a collection PSD files, start horizon distance integral at this frequency in Hertz (default = 10 Hz).")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment