Several configs have wrong argument type or wrong default values. Along with it, short options should be one character. Should be reviewed and fixed. E.g.
parser.add_argument('-r', '--plotter',type=int, default=False, help="run the prefit plotter, the result are saved in outputDir/plot/")
parser.add_argument('-sb', '--SBana',type=int, default=False, help="run also on the sideband (clousure test)")
Several configs have wrong argument type or wrong default values. Along with it, short options should be one character. Should be reviewed and fixed. E.g.
parser.add_argument('-r', '--plotter',type=int, default=False, help="run the prefit plotter, the result are saved in outputDir/plot/") parser.add_argument('-sb', '--SBana',type=int, default=False, help="run also on the sideband (clousure test)")
Minor issue. I will take care of this.