Reproducing the 2019 joint analysis » History » Version 8
« Previous -
Version 8/18
(diff) -
Next » -
Current version
Ashley Back, 02/04/2019 10:09 AM
Adds details on submitting to the grid and link to tutorial on docdb.
- Table of contents
- Reproducing the 2019 joint analysis
Reproducing the 2019 joint analysis¶
Making new predictions¶
The framework for generating analysis predictions with the systematic shifts is undergoing a bit of an overhaul, but its usable in many cases already. The current workflow is based on the code committed in CAFAna/shared/syst_framework
.
The main interface is through a python wrapper script submit_syst.py
which parses various input options such as the analysis, beam configuration, list of systematics etc. For more info on the options :
submit_syst.py -h usage: submit_syst.py [-h] -a ANALYSIS -b BEAM [-c] [-nt] [-fk] [-sg SYST_GROUP [SYST_GROUP ...]] [-all] [-xp EXTRAPS [EXTRAPS ...]] [-all_xp] [-g [GRID]] [-i [INTERACTIVE]] Submit jobs for generating analysis predictions optional arguments: -h, --help show this help message and exit -a ANALYSIS, --analysis ANALYSIS Specify analysis, numu2018/nue2018/nus2018 -b BEAM, --beam BEAM Specify beam mode, FHC/RHC -c, --concat Specify whether to use concats -nt, --notau Do not use tau swap files -fk, --fake_data Use fake data at ND -sg SYST_GROUP [SYST_GROUP ...], --syst_group SYST_GROUP [SYST_GROUP ...] Specify syst groups to generate -all, --all_systs Generate predictions for all syst groups -xp EXTRAPS [EXTRAPS ...], --extraps EXTRAPS [EXTRAPS ...] Specify extrapolations to carry out -all_xp, --all_extraps Generate predictions for all extrapolations -g [GRID], --grid [GRID] Run this on the grid with submit_cafana.py options -i [INTERACTIVE], --interactive [INTERACTIVE] Run this interactively with cafe options
For example, one can generate predictions interactively over a single concat file, for the LightLevelUp systematic in FHC mode for the nue2018 analysis by simply running :
submit_syst.py -a "nue2018" -b "FHC" -c -sg 'LightUp' -all_xp -i='-bq -l1 -ss'
The python wrapper picks up the relevant analysis components from syst_header.h
in the same folder and writes a CAFAna
macro make_predictions_systs.C
on the fly based on a template macro. This is similar in behaviour to make_sim_fcl
.
Right now, it only supports interactive running but the grid option will be implemented soon.
If you want to generate systematically shifted predictions on the grid right now, you can use the old framework in CAFAna/shared/Ana2019
that contains a static copy of make_predictions_systs.C
whose behaviour you control by passing text string options to the macro. For example, generate the same predictions as we did, using submit_syst.py
above, you would run:
cafe -bq -l 1 -ss make_predictions_systs.C FHCLightLevelUp_nueconcat_realNDData allxp_nue
To run this on the grid you would then just pass it to
submit_cafana.py
. You can find a more detailed example of how to run this in the accompanying PDF for the tutorial (docdb-35464).
Performing the joint fit¶
Making supporting plots¶
Additional material/notes¶
Editing systematics code¶
- Systematics are implemented using classes derived from ISyst (source:/trunk/CAFAna/Core/ISyst.h).
- Current available systematics are implemented in classes in source:/trunk/CAFAna/Systs
Rudimentary examples with more explanation can be found in the tutorial macro source:/trunk/CAFAna/tute/demoSysts.C
Videos from the 2019-Analysis workshop:¶
- Liudmila Kolupaeva's tutorial on how to do the joint fit: (see file zoom_0.mp4 below)
- Andrew Sutton's tutorial on how to do the joint fit: (see file zoom_1.mp4 below)