Skip to content
Snippets Groups Projects
Commit a8f12b9e authored by Bertrand Martin's avatar Bertrand Martin
Browse files

tauRec and JetRec: update LC jet seeding + tau thinning

Hello,

This MR is implementing a configuration for jet seeding + tau thinning that is closer to what we will use in the R22 reprocessing, namely:

* no JES-calibrated pt cut on the AntiKt4LCTopoJets used to seed the tau reconstruction
* a tau pt cut applied to the MVA tau pt at the end of the tau reconstruction, to thin the tau containers before writing them out to AOD

The tau thinning cut will be fine tuned, for now it's a simple 10 GeV pt cut.
This will lead to a significant increase in CPU as we will now run the tau reconstruction on all seed jets, not only on those with pt>15 GeV.
The impact on the AOD size depends on the MVA energy resolution and other factors that are still being tuned.
We expect to see changes in SPOT plots (ATLASRECTS-5684).

Cheers,
Bertrand
parent 7f818e8d
No related branches found
No related tags found
No related merge requests found
# Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration # Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
# JetRecFlags.py # JetRecFlags.py
# #
...@@ -189,7 +189,7 @@ class useCalibThresholdsLCTopo(JobProperty): ...@@ -189,7 +189,7 @@ class useCalibThresholdsLCTopo(JobProperty):
""" """
statusOn = True statusOn = True
allowedTypes = ['bool'] # type allowedTypes = ['bool'] # type
StoredValue = True # default value StoredValue = False # default value
class containerNamePrefix(JobProperty): class containerNamePrefix(JobProperty):
""" Prefix for jet collection names """ Prefix for jet collection names
......
...@@ -179,7 +179,7 @@ class tauRecMinPt(JobProperty): ...@@ -179,7 +179,7 @@ class tauRecMinPt(JobProperty):
""" """
statusOn=True statusOn=True
allowedTypes=['float'] allowedTypes=['float']
StoredValue=0.*Units.GeV StoredValue=10.*Units.GeV
class tauRecMaxNTracks(JobProperty): class tauRecMaxNTracks(JobProperty):
""" maximum number of classifiedCharged tracks for a tau candidate """ maximum number of classifiedCharged tracks for a tau candidate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment