ATLAS Offline Software
SmpMsFlags.py
Go to the documentation of this file.
1 # Copyright (C) 2002-2021 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 SmpMs_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 = []
17  MuonsTriggerNames = [
18  "EF_mu40_slow",
19  "EF_mu40_slow_empty",
20  "EF_mu40_slow_outOfTime",
21  "EF_mu40_slow_tight",
22  "EF_mu40_slow_outOfTime_tight",
23  "EF_mu60_slow_tight",
24  "EF_mu60_slow_outOfTime_tight"
25  ]
26 primRPVLLDESDM.add_JobProperty(SmpMs_triggerFilterFlags)
27 
28 
29 class SmpMs_muonFilterFlags(JobProperty):
30  statusOn = True
31  allowedTypes = ['bool']
32  StoredValue = True
33  cutEtMin = 40*Units.GeV
34  cutContainerMu='all'
35  usingAOD=False
36 primRPVLLDESDM.add_JobProperty(SmpMs_muonFilterFlags)
python.SmpMsFlags.SmpMs_muonFilterFlags
Definition: SmpMsFlags.py:29
python.SmpMsFlags.SmpMs_triggerFilterFlags
Definition: SmpMsFlags.py:10
SystemOfUnits