From b02c2bf5c9bee36ed34f3cce9a788b237959b99c Mon Sep 17 00:00:00 2001 From: IftachSadeh Date: Thu, 8 Oct 2015 12:30:58 +0200 Subject: [PATCH] ANNZ 2.1.0 - Removed unnecessary dictionary generation from Makefile. - Changed `std::map` to `std::unordered_map` in main containers of the `OptMaps()` and `VarMaps()` classes (constitutes a slight performance boost). - Nominally, no longer keeping track of the name of the original input file (stored in the ROOT trees with the name defined in `origFileName` in `myANNZ::Init()`). This may be switched back on by setting `glob.annz["storeOrigFileName"] = True`. - Added the option to use an entire input file as signal or background for single/randomized classification, in addition to (or instead of) defining a cut based on one of the input parameters. In order to use this option, one muse define the variables `inpFiles_sig` and `inpFiles_bck`. An example is given in `scripts/annz_rndCls_advanced.py`. - Added a bias-correction for randomized regression PDFs. This options is now active by default, and may be turned off by setting, ```python glob.annz["doBiasCorPDF"] = False ``` - Other minor modifications. --- CHANGELOG.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 262c13e..d6e3c9c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,9 +12,9 @@ - Added the option to use an entire input file as signal or background for single/randomized classification, in addition to (or instead of) defining a cut based on one of the input parameters. In order to use this option, one muse define the variables `inpFiles_sig` and `inpFiles_bck`. An example is given in `scripts/annz_rndCls_advanced.py`. - Added a bias-correction for randomized regression PDFs. This options is now active by default, and may be turned off by setting, -```python -glob.annz["doBiasCorPDF"] = False -``` + ```python + glob.annz["doBiasCorPDF"] = False + ``` - Other minor modifications.