ATLAS Offline Software
Loading...
Searching...
No Matches
python.HLT.Jet.TrigJetConfigFlags Namespace Reference

Functions

 createTrigJetConfigFlags ()
 createTrigFSHadConfigFlags ()

Variables

 flags = initConfigFlags()
 Files
 evaluate

Function Documentation

◆ createTrigFSHadConfigFlags()

python.HLT.Jet.TrigJetConfigFlags.createTrigFSHadConfigFlags ( )

Definition at line 49 of file TrigJetConfigFlags.py.

49def createTrigFSHadConfigFlags():
50 flags = AthConfigFlags()
51
52 # PFO-muon removal option for the full-scan hadronic signatures.
53 # Options are:
54 # "None": Do no PFO-muon removal
55 # "Calo": Use the calo-tagging tools from the muon slice
56 # "Iso" : Use the mainly isolation-based selections based on the MET associator package
57 flags.addFlag("Trigger.FSHad.PFOMuonRemoval", "Calo",
58 help='PFO-muon removal option: None, Calo, Iso)')
59
60 flags.addFlag("Trigger.FSHad.PFOMuonRemovalMinPt", 10 * GeV,
61 help='minimum pT threshold to use for the muon removal')
62
63 flags.addFlag("Trigger.FSHad.doJetRestrictedVertexSort", False,
64 help='use tracks in jets for computing sumpt2 for vertex sorting')
65
66 return flags
67

◆ createTrigJetConfigFlags()

python.HLT.Jet.TrigJetConfigFlags.createTrigJetConfigFlags ( )

Definition at line 6 of file TrigJetConfigFlags.py.

6def createTrigJetConfigFlags():
7 flags = AthConfigFlags()
8
9 flags.addFlag('Trigger.Jet.doJetSuperPrecisionTracking', False,
10 help='enable precision tracking in jet super-ROI before fast b-tagging (EMTopo jets)')
11
12 flags.addFlag("Trigger.Jet.fastbtagPFlow", True,
13 help='enable fast b-tagging for all fully calibrated HLT PFlow jets')
14
15 flags.addFlag("Trigger.Jet.fastbtagVertex", True,
16 help='enable the addition of the super ROI PV to the b-tagging')
17
18 flags.addFlag("Trigger.Jet.doVRJets", False,
19 help='enable the addition of the VR track jet reconstruction sequence')
20
21 # chooses calibration config file for HLT small-R jets
22 # mapping in: Reconstruction/Jet/JetCalibTools/python/JetCalibToolsConfig.py
23 # All calib keys for HLT jets have to start with "Trig" otherwise the JetCalibTool config fails!
24 flags.addFlag("Trigger.Jet.pflowCalibKey", lambda prevFlags: "TrigHIUPC" if 'HI' in prevFlags.Trigger.triggerMenuSetup else "TrigR22Prerec",
25 help='calibration config file for HLT small-R jets')
26
27 flags.addFlag("Trigger.Jet.emtopoCalibKey", "TrigLS2",
28 help='calibration config file for HLT small-R jets')
29
30 flags.addFlag("Trigger.Jet.pflowLJCalibKey", "TrigSoftDrop",
31 help='calibration config file for HLT large-R PFlow jets')
32
33 # chooses config directory for jet vertex tagger with neural network
34 flags.addFlag("Trigger.Jet.nnJVTConfigDir", lambda prevFlags: "JetPileupTag/NNJvt/HLT-2025-05-21",
35 help='config directory containing cut files and neural network for HLT nnjvt')
36
37 flags.addFlag("Trigger.Jet.PFlowTolerance", 1e-2,
38 help='tolerance in STEP Propagator')
39
40 flags.addFlag("Trigger.Jet.TrackVtxAssocWP", "Custom", # offline default is "Nonprompt_All_MaxWeight"
41 help='working point for the TVA algorithm')
42
43 flags.addFlag("Trigger.Jet.LowPtFilter", lambda prevFlags: 'HI' in prevFlags.Trigger.triggerMenuSetup,
44 help='apply low pT filter on antiKt4 jets (used for HI UPC jet reco)')
45
46 return flags
47
48

Variable Documentation

◆ evaluate

python.HLT.Jet.TrigJetConfigFlags.evaluate

Definition at line 75 of file TrigJetConfigFlags.py.

◆ Files

python.HLT.Jet.TrigJetConfigFlags.Files

Definition at line 72 of file TrigJetConfigFlags.py.

◆ flags

python.HLT.Jet.TrigJetConfigFlags.flags = initConfigFlags()

Definition at line 71 of file TrigJetConfigFlags.py.