parser.add_option("--template-bank",metavar="filename",help="Set the template bank xml file.")
parser.add_option("--mass-model",metavar="filename",help="Set the name of the mass model. Options are 'narrow-bns', 'broad-bns', 'bbh', 'ligo', 'detected-logm', or 'file'")
parser.add_option("--mass-model",metavar="filename",help="Set the name of the mass model. Options are 'narrow-bns', 'broad-bns', 'bbh', 'ligo', 'detected-logm', 'uniform-template', or 'file'")
parser.add_option("--mass-model-file",metavar="filename",help="Set the name of the mass model file, e.g., mass_model.h5. Required if --mass-model=file")
# dtdphi option
parser.add_option("--dtdphi-file",metavar="filename",action="append",help="dtdphi snr ratio pdfs to read from (hdf5 format)")
# SVD bank construction options
parser.add_option("--overlap",metavar="num",type="int",action="append",help="set the factor that describes the overlap of the sub banks, must be even!")
parser.add_option("--autocorrelation-length",type="int",default=201,help="The minimum number of samples to use for auto-chisquared, default 201 should be odd")
...
...
@@ -243,8 +247,8 @@ def parse_command_line():
parser.add_option("--samples-max",type="int",default=4096,help="The maximum number of samples to use for time slices with frequencies below 64Hz, default 4096")
parser.add_option("--bank-cache",metavar="filenames",action="append",help="Set the bank cache files in format H1=H1.cache,H2=H2.cache, etc.. (can be given multiple times)")
parser.add_option("--tolerance",metavar="float",type="float",default=0.9999,help="set the SVD tolerance, default 0.9999")
parser.add_option("--flow",metavar="num",type="float",default=40,help="set the low frequency cutoff, default 40 (Hz)")
parser.add_option("--fmax",metavar="num",type="float",default=1600,help="set the max frequency cutoff, default 1600 (Hz)")
parser.add_option("--flow",metavar="num",type="float",action="append",help="set the low frequency cutoff. Can be given multiple times.")
parser.add_option("--fmax",metavar="num",type="float",default=1600,help="set the max frequency cutoff, default 1600 (Hz)")
parser.add_option("--sample-rate",metavar="Hz",type="int",help="Set the sample rate. If not set, the sample rate will be based on the template frequency. The sample rate must be at least twice the highest frequency in the templates. If provided it must be a power of two")
parser.add_option("--identity-transform",action="store_true",help="Use identity transform, i.e. no SVD")