# + `--n` [count] (int): Set the number of templates per output file (required). It will be rounded to make all sub banks approximately the same size.
# + `--overlap` [count] (int): Overlap the templates in each file by this amount, must be even.
# + `--sort-by` [column]: Select the template sort order column (required).
# + `--add-f-final`: Select whether to add f_final to the bank.
# + `--max-f-final` [max final freq] (float): Max f_final to populate table with; if f_final > max, use max.
# + `--instrument` [ifo]: Override the instrument, required
# + `--bank-program` [name]: Select name of the program used to generate the template bank (default: tmpltbank).
# + `--verbose`: Be verbose.
# + `--approximant` [string]: Must specify an approximant
# + `--f-low` [frequency] (floate): Lower frequency cutoff
...
...
@@ -103,7 +101,6 @@ def group_templates(templates, n, overlap = 0):
ifend>=len(templates):
break
defparse_command_line():
parser=OptionParser()
parser.add_option("--output-path",metavar="path",default=".",help="Set the path to the directory where output files will be written. Default is \".\".")
...
...
@@ -111,17 +108,15 @@ def parse_command_line():
parser.add_option("--n",metavar="count",type="int",help="Set the number of templates per output file (required). It will be rounded to make all sub banks approximately the same size.")
parser.add_option("--overlap",default=0,metavar="count",type="int",help="overlap the templates in each file by this amount, must be even")
parser.add_option("--sort-by",metavar="column",default="mchirp",help="Select the template sort column, default mchirp")
parser.add_option("--add-f-final",action="store_true",help="Select whether to add f_final to the bank.")
parser.add_option("--max-f-final",metavar="float",type="float",help="Max f_final to populate table with; if f_final over mx, use max.")
parser.add_option("--instrument",metavar="ifo",type="string",help="override the instrument, required")
parser.add_option("--bank-program",metavar="name",default="tmpltbank",type="string",help="Select name of the program used to generate the template bank (default: tmpltbank).")
process=ligolw_process.register_to_xmldoc(xmldoc,program="gstlal_bank_splitter",paramdict=options.__dict__,comment="Split bank into smaller banks for SVD")
process=ligolw_process.register_to_xmldoc(xmldoc,program="gstlal_bank_splitter",paramdict=options.__dict__,comment="Split bank into smaller banks for SVD")