Closed kjvbrt closed 3 months ago
This PR moves all analysis parameters inside analysis function. This allows to provide variables to the analysis. For example additional command line arguments.
Example analysis is adjusted to use this new style:
examples/FCCee/higgs/mH-recoil/mumu/analysis_stage1.py examples/FCCee/higgs/mH-recoil/mumu/analysis_stage1_batch.py examples/FCCee/higgs/mH-recoil/mumu/analysis_stage2.py
Quick list of changes:
Analysis
__init__()
args['unknown']
This PR moves all analysis parameters inside analysis function. This allows to provide variables to the analysis. For example additional command line arguments.
Example analysis is adjusted to use this new style:
Quick list of changes:
Analysis
class.__init__()
method gets a dictionary of the already parsed command line arguments plus a list of unknown arguments inargs['unknown']
.