Skip to content

CPAlgorithms: add the option to print out the list of systematics to the output

Baptiste Ravina requested to merge ravinab/athena:syslistdumper into main

We add the option to configure an instance of CP::SysListDumperAlg as part of the OutputAnalysisConfig block.

For example, editing the YAML config to read

Output:
    treeName: 'analysis'
    vars: []
    metVars: []
    systematicsHistogram: 'listOfSystematics'
    containers:
        # Format should follow: '<suffix>:<output container>'
        mu_: 'OutMuons'
        el_: 'OutElectrons'
        jet_: 'OutJets'
        met_: 'AnaMET'
        '': 'EventInfo'

will add a TH1 histogram named "listOfSystematics" to the hist-output.root file, where the bin labels are the various systematics that were run.

Merge request reports