52 |
|
help="local configuration file") |
53 |
|
|
54 |
|
parser.add_option("-c", "--condorDir", dest="condorDir", |
55 |
< |
help="condor output directory") |
55 |
> |
help="condor output directory") |
56 |
|
parser.add_option("-n", "--normalize", action="store_true", dest="normalizeToData", default=False, |
57 |
< |
help="normalize total background MC yield to the data") |
57 |
> |
help="normalize total background MC yield to the data") |
58 |
|
parser.add_option("-u", "--unit-area", action="store_true", dest="normalizeToUnitArea", default=False, |
59 |
< |
help="normalize all samples to unit area (useful to compare shapes)") |
59 |
> |
help="normalize all samples to unit area (useful to compare shapes)") |
60 |
> |
parser.add_option("-e", "--empty", action="store_true", dest="noStack", default=False, |
61 |
> |
help="don't stack the background samples, draw them as empty histograms instead") |
62 |
> |
|
63 |
|
|
64 |
|
return parser |
65 |
|
|