Skip to content

possibility to save central and forward jets separately in JetAnalysisAlgorithms

BinBin Dong requested to merge bdong/athena:handle-fjet into main

Following !73328 (merged) which added an easy way to produce a collection of forward jets on top of the standard collection of central jets, adding enableJvt to handle it properly for JVT. Without the change, it would crash due to the duplication of weight_jvt_effSF.

One can then set up as following:

Jets:
  - containerName: 'AnaFwdJets'
    jetCollection: 'AntiKt4EMPFlowJets'
    JVT:
      - containerName: 'AnaFwdJets'
        enableFJvt: True
        postfix: 'fjetjvt'
        enableJvt: False
    PtEtaSelection:
        minPt: 20000.0
        minEta: 2.5
        maxEta: 4.5
  - containerName: 'AnaJets'
    jetCollection: 'AntiKt4EMPFlowJets'
    JVT: {}
    PtEtaSelection:
        minPt: 20000.0
        maxEta: 2.5

cc @ravinab

Merge request reports