This is the main LALSuite development repository, past development is
captured in the repository below:
https://git.ligo.org/lscsoft/lalsuite-archive
This new repository utilizes [git-lfs](https://wiki.ligo.org/DASWG/GitLFS#Install_the_git_LFS_client) for the managament of large files and as such `git-lfs` needs to be installed and configured to correctly clone this repository. After installing `git-lfs` it can be configured using:
```
$ git lfs install
```
This only needs to be done once for each machine you access the repository. It can then be cloned using:
Given a set of cells and the weight of that cell, calculate a N% CR including cells which contribute to that probability mass. If n is set, cr_thr is ignored and instead this many points are taken.
Given a set of cells and the weight of that cell, calculate a N% CR including cells which contribute to that probability mass.
@@ -192,16 +182,12 @@ grid_section.add_argument("--setup", help="Set up the initial grid based on temp
grid_section.add_argument("-t","--tmplt-bank",help="XML file with template bank.")
grid_section.add_argument("-O","--use-overlap",help="Use overlap information to define 'closeness'.")
grid_section.add_argument("-T","--overlap-threshold",type=float,help="Threshold on overlap value.")
grid_section.add_argument("-s","--points-per-side",type=int,default=10,help="Number of points per side, default is 10.")
grid_section.add_argument("-I","--initial-region",action="append",help="Override the initial region with a custom specification. Specify multiple times like, -I mass1=1.0,2.0 -I mass2=1.0,1.5")
grid_section.add_argument("-D","--deactivate",action="store_true",help="Deactivate cells initially which have no template within them.")
grid_section.add_argument("-P","--prerefine",help="Refine this initial grid based on overlap values.")
refine_section=argp.add_argument_group("refine options","Options for refining a pre-existing grid.")
refine_section.add_argument("--refine",help="Refine a prexisting grid. Pass this option the grid points from previous levels (or the --setup) option.")
refine_section.add_argument("-r","--result-file",help="XML file containing newest result to refine.")
refine_section.add_argument("-M","--max-n-points",help="Refine *at most* this many points, can override confidence region thresholds.")
refine_section.add_argument("-m","--min-n-points",help="Refine *at least* this many points, can override confidence region thresholds.")
opts=argp.parse_args()
...
...
@@ -340,21 +326,15 @@ if opts.refine or opts.prerefine: