ATLAS Offline Software
StoppedFlags.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 Stopped_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  "L1_RD0_EMPTY",
18  "L1_RD0_FIRSTEMPTY",
19  "L1_RD1_EMPTY",
20  "L1_RD1_FIRSTEMPTY",
21  "L1_J10_FIRSTEMPTY",
22  "L1_J10_EMPTY",
23  "L1_J10_UNPAIRED",
24  "L1_J10_UNPAIRED_ISO",
25  "L1_J10_UNPAIRED_NONISO",
26  "L1_J30_FIRSTEMPTY",
27  "L1_J30_EMPTY",
28  "L1_J30_UNPAIRED",
29  "L1_J30_UNPAIRED_ISO",
30  "L1_J30_UNPAIRED_NONISO"
31  ]
32  MuonsTriggerNames = []
33  signalPrescale = 1
34  backgroundPrescale = 1000
35 primRPVLLDESDM.add_JobProperty(Stopped_triggerFilterFlags)
36 
37 class Stopped_jetFilterFlags(JobProperty):
38  statusOn = True
39  allowedTypes = ['bool']
40  StoredValue = False
41  cutEtMin = 40*Units.GeV
42  cutEtMax = 7000*Units.GeV
43  cutEtaMin = 0
44  cutEtaMax = 1.3
45  cutPSFracMax = 0.95
46  jetCollectionName='AntiKt4EMTopoJets'
47 primRPVLLDESDM.add_JobProperty(Stopped_jetFilterFlags)
48 
49 class Stopped_muonSegmentFilterFlags(JobProperty):
50  statusOn = True
51  allowedTypes = ["bool"]
52  StoredValue = False
53  cutNsegMin = -1
54  cutNsegMax = 2
55  addPrescaledLooseFilter = True
56  cutNsegMinLoose = 0
57  cutNsegMaxLoose = 20
58  prescaleFactorForLooseFilter = 20
59  muonSegmentCollectionName = "MuonSegments" #"ConvertedMBoySegments"
60 primRPVLLDESDM.add_JobProperty(Stopped_muonSegmentFilterFlags)
61 
SystemOfUnits
python.StoppedFlags.Stopped_jetFilterFlags
Definition: StoppedFlags.py:37
python.StoppedFlags.Stopped_triggerFilterFlags
Definition: StoppedFlags.py:10
python.StoppedFlags.Stopped_muonSegmentFilterFlags
Definition: StoppedFlags.py:49