ATLAS Offline Software
QuirksFlags.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration
2 
3 from AthenaCommon.JobProperties import JobProperty
4 from AthenaCommon.JobProperties import jobproperties
5 
6 import AthenaCommon.SystemOfUnits as Units
7 
8 primRPVLLDESDM=jobproperties.PrimaryDPDFlags_RPVLLStream
9 
10 class Quirks_triggerFilterFlags(JobProperty):
11  statusOn = True
12  allowedTypes = ['bool']
13  StoredValue = True
14  TriggerNames = [] # only put trigger names in this list if you want to override the below stream-specific ones
15  EgammaTriggerNames = []
16  JetTauEtmissTriggerNames = ["EF_xe80_tclcw_loose", "EF_xe80T_tclcw_loose"]
17  MuonsTriggerNames = []
18 primRPVLLDESDM.add_JobProperty(Quirks_triggerFilterFlags)
19 
20 class Quirks_offlineFilterFlags(JobProperty):
21  statusOn = True
22  allowedTypes = ['bool']
23  StoredValue = True
24  cutMetMin = 130.0*Units.GeV
25 primRPVLLDESDM.add_JobProperty(Quirks_offlineFilterFlags)
SystemOfUnits
python.QuirksFlags.Quirks_triggerFilterFlags
Definition: QuirksFlags.py:10
python.QuirksFlags.Quirks_offlineFilterFlags
Definition: QuirksFlags.py:20