ATLAS Offline Software
Functions | Variables
L1TopoSimulationConfig Namespace Reference

Functions

def L1LegacyTopoSimulationCfg (flags)
 
def L1TopoSimulationCfg (flags, doMonitoring=True, readMuCTPI=False, name="L1TopoSimulation", deactivateL1TopoMuons=False, useMuonRoIs=False, useMuonDecoder=False, writeMuonRoIs=True)
 
def L1TopoSimulationStandaloneCfg (flags, outputEDM=[], doMuons=False, doMonitoring=True)
 
def addEDM (edmType, edmName)
 

Variables

 log
 
 algLogLevel
 
 parser
 
 formatter_class
 
 nargs
 
 action
 
 dest
 
 help
 
 required
 
 default
 
 True
 
 False
 
 type
 
 int
 
 bool
 
 args
 
 supportedSubsystems
 
 args_subsystem
 
 subsystem
 
 filename
 
 flags
 
 OutputLevel
 
 MaxEvents
 
 triggerMenuSetup
 
 triggerConfig
 
 Files
 
 NumThreads
 
 NumConcurrentEvents
 
 SkipEvents
 
 AODFileName
 
 doMuon
 
 enableL1MuonPhase1
 
 doMuonTopoInputs
 
 enableL1TopoBWSimulation
 
 doFullMonMT
 
 OutputJSON
 
 enableL1TopoDump
 
 GlobalTag
 
 AtlasVersion
 
 acc
 
 type_names
 
 xRoIBResultAcc
 
 xRoIBResultOutputs
 
 decoderTools
 
 outputEDM
 
 maybeMissingRobs
 
 roibResultTool
 
 name
 
 writeBS
 
 rpcdecodingAcc
 
 tgcdecodingAcc
 
 muonRoiTool
 
 jFexTool
 
 jFexInputByteStreamTool
 
 eFexTool
 
 decodeInputs
 
 gFexTool
 
 gFexInputByteStreamTool
 
 l1topoBSTool
 
 decoderAlg
 
 DecoderTools
 
 MaybeMissingROBs
 
 sequenceName
 
 roib2topo
 
 doMuons
 
 FillHistoBasedOnHardware
 
 PrescaleDAQROBAccess
 
 histSvc
 
 Output
 
 ItemList
 
 withDetails
 
 summariseProps
 
 printDefaults
 

Function Documentation

◆ addEDM()

def L1TopoSimulationConfig.addEDM (   edmType,
  edmName 
)

Definition at line 371 of file L1TopoSimulationConfig.py.

371  def addEDM(edmType, edmName):
372  auxType = edmType.replace('Container','AuxContainer')
373  return [f'{edmType}#{edmName}',
374  f'{auxType}#{edmName}Aux.']
375 

◆ L1LegacyTopoSimulationCfg()

def L1TopoSimulationConfig.L1LegacyTopoSimulationCfg (   flags)

Definition at line 7 of file L1TopoSimulationConfig.py.

8 
10 
11  from L1TopoSimulation.L1TopoInputHistograms import configureEMTauInputProviderHistograms, configureEnergyInputProviderHistograms, configureJetInputProviderHistograms
12  emtauProvider = CompFactory.LVL1.EMTauInputProvider("EMTauInputProvider")
13  emtauProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
14  emtauProvider.MonTool.HistPath = 'L1LegacyTopoSimulation/EMTauInputProvider'
15  configureEMTauInputProviderHistograms(emtauProvider, flags)
16  energyProvider = CompFactory.LVL1.EnergyInputProvider("EnergyInputProvider")
17  energyProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
18  energyProvider.MonTool.HistPath = 'L1LegacyTopoSimulation/EnergyInputProvider'
19  configureEnergyInputProviderHistograms(energyProvider, flags)
20  jetProvider = CompFactory.LVL1.JetInputProvider("JetInputProvider")
21  jetProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
22  jetProvider.MonTool.HistPath = 'L1LegacyTopoSimulation/JetInputProvider'
23  configureJetInputProviderHistograms(jetProvider, flags)
24 
25  topoSimAlg = CompFactory.LVL1.L1TopoSimulation("L1LegacyTopoSimulation",
26  EMTAUInputProvider = emtauProvider,
27  JetInputProvider = jetProvider,
28  EnergyInputProvider = energyProvider,
29  IsLegacyTopo = True,
30  InputDumpFile = "inputdump_legacy.txt",
31  EnableInputDump = flags.Trigger.enableL1TopoDump,
32  UseBitwise = flags.Trigger.enableL1TopoBWSimulation,
33  MonHistBaseDir = "L1/L1LegacyTopoAlgorithms"
34  )
35 
36  # No muon inputs to legacy Topo
37  topoSimAlg.MuonInputProvider.locationMuCTPItoL1Topo = ""
38  topoSimAlg.MuonInputProvider.locationMuCTPItoL1Topo1 = ""
39  topoSimAlg.MuonInputProvider.locationMuonRoI = ""
40  topoSimAlg.MuonInputProvider.locationMuonRoI1 = ""
41  topoSimAlg.MuonInputProvider.ROIBResultLocation = ""
42 
43  acc.addEventAlgo(topoSimAlg)
44  return acc
45 

◆ L1TopoSimulationCfg()

def L1TopoSimulationConfig.L1TopoSimulationCfg (   flags,
  doMonitoring = True,
  readMuCTPI = False,
  name = "L1TopoSimulation",
  deactivateL1TopoMuons = False,
  useMuonRoIs = False,
  useMuonDecoder = False,
  writeMuonRoIs = True 
)

Definition at line 46 of file L1TopoSimulationConfig.py.

46 def L1TopoSimulationCfg(flags, doMonitoring=True, readMuCTPI=False, name="L1TopoSimulation", deactivateL1TopoMuons=False, useMuonRoIs=False, useMuonDecoder=False, writeMuonRoIs = True):
47 
48  acc = ComponentAccumulator()
49 
50  decoderTools = []
51  maybeMissingRobs = []
52 
53  #Configure the MuonInputProvider
54  muProvider=""
55 
56  if flags.Trigger.L1.doMuon and not deactivateL1TopoMuons:
57  muProvider = CompFactory.LVL1.MuonInputProvider("MuonInputProvider")
58 
59  """
60  If muons coming from the decoding, we use MuonRoI, otherwise MuCTPIL1Topo
61  So here we should be adding proper flag for P1, and when input file is RAW
62  Simply, if muons are simulated, we will use MuCTPIL1Topo, if decoded MuonRoI
63  """
64 
65  if readMuCTPI:
66  muProvider.locationMuCTPItoL1Topo = ""
67  muProvider.locationMuCTPItoL1Topo1 = ""
68  muProvider.locationMuonRoI = "L1MuCTPItoL1TopoLocationFromMuonRoI"
69  muProvider.locationMuonRoI1 = "L1MuCTPItoL1TopoLocationFromMuonRoI1"
70  if useMuonRoIs:
71  muProvider.locationMuonRoI = "LVL1MuonRoIs"
72  muProvider.locationMuonRoI1 = "LVL1MuonRoIsBCp1"
73  else:
74  muProvider.locationMuonRoI = ""
75  muProvider.locationMuonRoI1 = ""
76 
77  #Configure the MuonRoiTools for the MIP
78  from TrigT1MuonRecRoiTool.TrigT1MuonRecRoiToolConfig import RPCRecRoiToolCfg, TGCRecRoiToolCfg
79  muProvider.RecRpcRoiTool = acc.popToolsAndMerge(RPCRecRoiToolCfg(flags))
80  muProvider.RecTgcRoiTool = acc.popToolsAndMerge(TGCRecRoiToolCfg(flags))
81 
82  if useMuonDecoder:
83  from MuonConfig.MuonBytestreamDecodeConfig import RpcBytestreamDecodeCfg,TgcBytestreamDecodeCfg
84  acc.merge(RpcBytestreamDecodeCfg(flags))
85  acc.merge(TgcBytestreamDecodeCfg(flags))
86  from TrigT1ResultByteStream.TrigT1ResultByteStreamConfig import MuonRoIByteStreamToolCfg
87  muonRoiTool = acc.popToolsAndMerge(MuonRoIByteStreamToolCfg(flags, name="L1MuonBSDecoderToolInL1Topo", writeBS=False, writeDecodedMuonRoIs = writeMuonRoIs))
88  decoderTools += [muonRoiTool]
89  #maybeMissingRobs += muonRoiTool.ROBIDs
90 
91  emtauProvider = ""
92  jetProvider = ""
93  energyProvider = ""
94 
95  if flags.Trigger.L1.doeFex:
96  emtauProvider = CompFactory.LVL1.eFexInputProvider("eFexInputProvider")
97  if flags.Trigger.L1.dojFex:
98  jetProvider = CompFactory.LVL1.jFexInputProvider("jFexInputProvider")
99  if flags.Trigger.L1.dogFex:
100  energyProvider = CompFactory.LVL1.gFexInputProvider("gFexInputProvider")
101 
102  controlHistSvc = CompFactory.LVL1.ControlHistSvc("ControlHistSvc")
103 
104  IsData = True
105  if flags.Input.isMC:
106  IsData = False
107 
108  from L1TopoByteStream.L1TopoByteStreamConfig import L1TopoPhase1ByteStreamToolCfg
109  l1topoBSTool = acc.popToolsAndMerge(L1TopoPhase1ByteStreamToolCfg(flags, "L1TopoBSDecoderTool"))
110  decoderTools += [l1topoBSTool]
111  maybeMissingRobs += l1topoBSTool.ROBIDs
112 
113  if IsData:
114  decoderAlg = CompFactory.L1TriggerByteStreamDecoderAlg(name="L1TriggerByteStreamDecoder",
115  DecoderTools=decoderTools,
116  MaybeMissingROBs=maybeMissingRobs)
117 
118  acc.addEventAlgo(decoderAlg, sequenceName='AthAlgSeq')
119 
120  if not flags.Trigger.enableL1CaloPhase1:
121  if (emtauProvider != ""):
122  emtauProvider.eFexEMRoIKey = ""
123  emtauProvider.eFexTauRoIKey = ""
124  if (jetProvider != ""):
125  jetProvider.jFexSRJetRoIKey = ""
126  jetProvider.jFexLRJetRoIKey = ""
127  jetProvider.jFexFwdElRoIKey = ""
128  jetProvider.jFexTauRoIKey = ""
129  jetProvider.jFexMETRoIKey = ""
130  jetProvider.jFexSumETRoIKey = ""
131  if (energyProvider != ""):
132  energyProvider.gFexSRJetRoIKey = ""
133  energyProvider.gFexLRJetRoIKey = ""
134  energyProvider.gMETComponentsJwojKey = ""
135  energyProvider.gMHTComponentsJwojKey = ""
136  energyProvider.gMETComponentsNoiseCutKey = ""
137  energyProvider.gMETComponentsRmsKey = ""
138  energyProvider.gScalarEJwojKey = ""
139 
140  topoSimAlg = CompFactory.LVL1.L1TopoSimulation(name,
141  MuonInputProvider = muProvider,
142  EMTAUInputProvider = emtauProvider,
143  JetInputProvider = jetProvider,
144  EnergyInputProvider = energyProvider,
145  ControlHistSvc = controlHistSvc, # if doMonitoring else "",
146  IsLegacyTopo = False,
147  doMonitoring = doMonitoring,
148  EnableInputDump = flags.Trigger.enableL1TopoDump,
149  UseBitwise = flags.Trigger.enableL1TopoBWSimulation
150  )
151  if name!="L1TopoSimulation":
152  topoSimAlg.MonHistBaseDir = "L1/OnlineL1TopoAlgorithms"
153 
154  acc.addEventAlgo(topoSimAlg)
155 
156 
157  if doMonitoring:
158  from L1TopoOnlineMonitoring import L1TopoOnlineMonitoringConfig as TopoMonConfig
159  if name=="L1TopoSimulation":
160  acc.addEventAlgo(TopoMonConfig.getL1TopoPhase1OnlineMonitor(flags,'L1/L1TopoSimDecisions',
161  doHwMon=IsData,doComp=IsData, doMultComp=IsData))
162  else:
163  acc.addEventAlgo(TopoMonConfig.getL1TopoPhase1OnlineMonitor(flags,'L1/OnlineL1TopoSimDecisions',
164  toolName=name+"_Monitor",
165  doHwMon=IsData,doComp=IsData, doMultComp=IsData))
166 
167  return acc
168 

◆ L1TopoSimulationStandaloneCfg()

def L1TopoSimulationConfig.L1TopoSimulationStandaloneCfg (   flags,
  outputEDM = [],
  doMuons = False,
  doMonitoring = True 
)

Definition at line 169 of file L1TopoSimulationConfig.py.

169 def L1TopoSimulationStandaloneCfg(flags, outputEDM=[], doMuons = False, doMonitoring=True):
170 
171  acc = ComponentAccumulator()
172 
173  efex_provider_attr = ['eFexEMRoI','eFexTauRoI']
174  jfex_provider_attr = ['jFexSRJetRoI','jFexLRJetRoI','jFexFwdElRoI','jFexTauRoI','jFexMETRoI','jFexSumETRoI']
175  gfex_provider_attr = ['gFexSRJetRoI','gFexLRJetRoI', 'gScalarEJwoj','gMETComponentsJwoj','gMHTComponentsJwoj', 'gMETComponentsNoiseCut', 'gMETComponentsRms']
176  #Note: Unused container outputs from gFEX are:
177  #'gFexRhoRoI', 'gMSTComponentsJwoj', 'gScalarENoiseCut', 'gScalarERms'
178  #as compared with: https://gitlab.cern.ch/atlas/athena/-/blob/main/Trigger/TrigT1/L1CaloFEX/L1CaloFEXSim/L1CaloFEXSim/gFEXSysSim.h#L128-136
179 
180 
181  from L1TopoSimulation.L1TopoInputHistograms import configureMuonInputProviderHistograms, configureeFexInputProviderHistograms, configurejFexInputProviderHistograms, configuregFexInputProviderHistograms
182 
183  #Configure the MuonInputProvider
184  muProvider=""
185  if doMuons:
186  muProvider = CompFactory.LVL1.MuonInputProvider("MuonInputProvider")
187 
188  if flags.Trigger.L1.doMuonTopoInputs:
189  muProvider.locationMuCTPItoL1Topo = ""
190  muProvider.locationMuCTPItoL1Topo1 = ""
191  muProvider.locationMuonRoI = "L1MuCTPItoL1TopoLocationFromMuonRoI"
192  muProvider.locationMuonRoI1 = "L1MuCTPItoL1TopoLocationFromMuonRoI1"
193  else:
194  muProvider.locationMuonRoI = ""
195  muProvider.locationMuonRoI1 = ""
196 
197  #Configure the MuonRoiTools for the MIP
198  from TrigT1MuonRecRoiTool.TrigT1MuonRecRoiToolConfig import RPCRecRoiToolCfg, TGCRecRoiToolCfg
199  muProvider.RecRpcRoiTool = acc.popToolsAndMerge(RPCRecRoiToolCfg(flags))
200  muProvider.RecTgcRoiTool = acc.popToolsAndMerge(TGCRecRoiToolCfg(flags))
201  muProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
202  muProvider.MonTool.HistPath = 'L1TopoSimulation/MuonInputProvider'
203  configureMuonInputProviderHistograms(muProvider, flags)
204 
205 
206  efexProvider = CompFactory.LVL1.eFexInputProvider("eFexInputProvider")
207  efexProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
208  efexProvider.MonTool.HistPath = 'L1TopoSimulation/eFexInputProvider'
209  configureeFexInputProviderHistograms(efexProvider, flags)
210  jfexProvider = CompFactory.LVL1.jFexInputProvider("jFexInputProvider")
211  jfexProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
212  jfexProvider.MonTool.HistPath = 'L1TopoSimulation/jFexInputProvider'
213  configurejFexInputProviderHistograms(jfexProvider, flags)
214  gfexProvider = CompFactory.LVL1.gFexInputProvider("gFexInputProvider")
215  gfexProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
216  gfexProvider.MonTool.HistPath = 'L1TopoSimulation/gFexInputProvider'
217  configuregFexInputProviderHistograms(gfexProvider, flags)
218 
219  for attr in efex_provider_attr:
220  res = [x for x in outputEDM if attr in x]
221  if len(res)>0:
222  key = res[0].split('#')[1]
223  print (f'Key found for eFEX: {key}')
224  setattr(efexProvider,attr+'Key',key)
225  else:
226  setattr(efexProvider,attr+'Key','')
227 
228  for attr in jfex_provider_attr:
229  res = [x for x in outputEDM if attr in x]
230  if len(res)>0:
231  key = res[0].split('#')[1]
232  print (f'Key found for jFEX: {key}')
233  setattr(jfexProvider,attr+'Key',key)
234  else:
235  setattr(jfexProvider,attr+'Key','')
236 
237  for attr in gfex_provider_attr:
238  res = [x for x in outputEDM if attr in x]
239  if len(res)>0:
240  key = res[0].split('#')[1]
241  print (f'Key found for gFEX: {key}')
242  setattr(gfexProvider,attr+'Key',key)
243  else:
244  setattr(gfexProvider,attr+'Key','')
245 
246  topoSimAlg = CompFactory.LVL1.L1TopoSimulation("L1TopoSimulation",
247  MuonInputProvider = muProvider,
248  EMTAUInputProvider = efexProvider,
249  JetInputProvider = jfexProvider,
250  EnergyInputProvider = gfexProvider,
251  IsLegacyTopo = False,
252  doMonitoring = doMonitoring,
253  EnableInputDump = flags.Trigger.enableL1TopoDump,
254  UseBitwise = flags.Trigger.enableL1TopoBWSimulation
255  )
256 
257  acc.addEventAlgo(topoSimAlg)
258 
259  return acc
260 

Variable Documentation

◆ acc

L1TopoSimulationConfig.acc

Definition at line 333 of file L1TopoSimulationConfig.py.

◆ action

L1TopoSimulationConfig.action

Definition at line 275 of file L1TopoSimulationConfig.py.

◆ algLogLevel

L1TopoSimulationConfig.algLogLevel

Definition at line 272 of file L1TopoSimulationConfig.py.

◆ AODFileName

L1TopoSimulationConfig.AODFileName

Definition at line 316 of file L1TopoSimulationConfig.py.

◆ args

L1TopoSimulationConfig.args

Definition at line 287 of file L1TopoSimulationConfig.py.

◆ args_subsystem

L1TopoSimulationConfig.args_subsystem

Definition at line 290 of file L1TopoSimulationConfig.py.

◆ AtlasVersion

L1TopoSimulationConfig.AtlasVersion

Definition at line 329 of file L1TopoSimulationConfig.py.

◆ bool

L1TopoSimulationConfig.bool

Definition at line 286 of file L1TopoSimulationConfig.py.

◆ decodeInputs

L1TopoSimulationConfig.decodeInputs

Definition at line 418 of file L1TopoSimulationConfig.py.

◆ decoderAlg

L1TopoSimulationConfig.decoderAlg

Definition at line 456 of file L1TopoSimulationConfig.py.

◆ decoderTools

L1TopoSimulationConfig.decoderTools

Definition at line 353 of file L1TopoSimulationConfig.py.

◆ DecoderTools

L1TopoSimulationConfig.DecoderTools

Definition at line 457 of file L1TopoSimulationConfig.py.

◆ default

L1TopoSimulationConfig.default

Definition at line 276 of file L1TopoSimulationConfig.py.

◆ dest

L1TopoSimulationConfig.dest

Definition at line 275 of file L1TopoSimulationConfig.py.

◆ doFullMonMT

L1TopoSimulationConfig.doFullMonMT

Definition at line 321 of file L1TopoSimulationConfig.py.

◆ doMuon

L1TopoSimulationConfig.doMuon

Definition at line 317 of file L1TopoSimulationConfig.py.

◆ doMuons

L1TopoSimulationConfig.doMuons

Definition at line 470 of file L1TopoSimulationConfig.py.

◆ doMuonTopoInputs

L1TopoSimulationConfig.doMuonTopoInputs

Definition at line 319 of file L1TopoSimulationConfig.py.

◆ eFexTool

L1TopoSimulationConfig.eFexTool

Definition at line 418 of file L1TopoSimulationConfig.py.

◆ enableL1MuonPhase1

L1TopoSimulationConfig.enableL1MuonPhase1

Definition at line 318 of file L1TopoSimulationConfig.py.

◆ enableL1TopoBWSimulation

L1TopoSimulationConfig.enableL1TopoBWSimulation

Definition at line 320 of file L1TopoSimulationConfig.py.

◆ enableL1TopoDump

L1TopoSimulationConfig.enableL1TopoDump

Definition at line 323 of file L1TopoSimulationConfig.py.

◆ False

L1TopoSimulationConfig.False

Definition at line 278 of file L1TopoSimulationConfig.py.

◆ filename

L1TopoSimulationConfig.filename

Definition at line 292 of file L1TopoSimulationConfig.py.

◆ Files

L1TopoSimulationConfig.Files

Definition at line 312 of file L1TopoSimulationConfig.py.

◆ FillHistoBasedOnHardware

L1TopoSimulationConfig.FillHistoBasedOnHardware

Definition at line 472 of file L1TopoSimulationConfig.py.

◆ flags

L1TopoSimulationConfig.flags

Definition at line 302 of file L1TopoSimulationConfig.py.

◆ formatter_class

L1TopoSimulationConfig.formatter_class

Definition at line 274 of file L1TopoSimulationConfig.py.

◆ gFexInputByteStreamTool

L1TopoSimulationConfig.gFexInputByteStreamTool

Definition at line 444 of file L1TopoSimulationConfig.py.

◆ gFexTool

L1TopoSimulationConfig.gFexTool

Definition at line 429 of file L1TopoSimulationConfig.py.

◆ GlobalTag

L1TopoSimulationConfig.GlobalTag

Definition at line 325 of file L1TopoSimulationConfig.py.

◆ help

L1TopoSimulationConfig.help

Definition at line 275 of file L1TopoSimulationConfig.py.

◆ histSvc

L1TopoSimulationConfig.histSvc

Definition at line 484 of file L1TopoSimulationConfig.py.

◆ int

L1TopoSimulationConfig.int

Definition at line 284 of file L1TopoSimulationConfig.py.

◆ ItemList

L1TopoSimulationConfig.ItemList

Definition at line 489 of file L1TopoSimulationConfig.py.

◆ jFexInputByteStreamTool

L1TopoSimulationConfig.jFexInputByteStreamTool

Definition at line 410 of file L1TopoSimulationConfig.py.

◆ jFexTool

L1TopoSimulationConfig.jFexTool

Definition at line 400 of file L1TopoSimulationConfig.py.

◆ l1topoBSTool

L1TopoSimulationConfig.l1topoBSTool

Definition at line 451 of file L1TopoSimulationConfig.py.

◆ log

L1TopoSimulationConfig.log

Definition at line 270 of file L1TopoSimulationConfig.py.

◆ MaxEvents

L1TopoSimulationConfig.MaxEvents

Definition at line 306 of file L1TopoSimulationConfig.py.

◆ maybeMissingRobs

L1TopoSimulationConfig.maybeMissingRobs

Definition at line 355 of file L1TopoSimulationConfig.py.

◆ MaybeMissingROBs

L1TopoSimulationConfig.MaybeMissingROBs

Definition at line 458 of file L1TopoSimulationConfig.py.

◆ muonRoiTool

L1TopoSimulationConfig.muonRoiTool

Definition at line 393 of file L1TopoSimulationConfig.py.

◆ name

L1TopoSimulationConfig.name

Definition at line 358 of file L1TopoSimulationConfig.py.

◆ nargs

L1TopoSimulationConfig.nargs

Definition at line 275 of file L1TopoSimulationConfig.py.

◆ NumConcurrentEvents

L1TopoSimulationConfig.NumConcurrentEvents

Definition at line 314 of file L1TopoSimulationConfig.py.

◆ NumThreads

L1TopoSimulationConfig.NumThreads

Definition at line 313 of file L1TopoSimulationConfig.py.

◆ Output

L1TopoSimulationConfig.Output

Definition at line 484 of file L1TopoSimulationConfig.py.

◆ outputEDM

L1TopoSimulationConfig.outputEDM

Definition at line 354 of file L1TopoSimulationConfig.py.

◆ OutputJSON

L1TopoSimulationConfig.OutputJSON

Definition at line 322 of file L1TopoSimulationConfig.py.

◆ OutputLevel

L1TopoSimulationConfig.OutputLevel

Definition at line 304 of file L1TopoSimulationConfig.py.

◆ parser

L1TopoSimulationConfig.parser

Definition at line 274 of file L1TopoSimulationConfig.py.

◆ PrescaleDAQROBAccess

L1TopoSimulationConfig.PrescaleDAQROBAccess

Definition at line 473 of file L1TopoSimulationConfig.py.

◆ printDefaults

L1TopoSimulationConfig.printDefaults

Definition at line 494 of file L1TopoSimulationConfig.py.

◆ required

L1TopoSimulationConfig.required

Definition at line 275 of file L1TopoSimulationConfig.py.

◆ roib2topo

L1TopoSimulationConfig.roib2topo

Definition at line 463 of file L1TopoSimulationConfig.py.

◆ roibResultTool

L1TopoSimulationConfig.roibResultTool

Definition at line 358 of file L1TopoSimulationConfig.py.

◆ rpcdecodingAcc

L1TopoSimulationConfig.rpcdecodingAcc

Definition at line 387 of file L1TopoSimulationConfig.py.

◆ sequenceName

L1TopoSimulationConfig.sequenceName

Definition at line 461 of file L1TopoSimulationConfig.py.

◆ SkipEvents

L1TopoSimulationConfig.SkipEvents

Definition at line 315 of file L1TopoSimulationConfig.py.

◆ subsystem

L1TopoSimulationConfig.subsystem

Definition at line 291 of file L1TopoSimulationConfig.py.

◆ summariseProps

L1TopoSimulationConfig.summariseProps

Definition at line 494 of file L1TopoSimulationConfig.py.

◆ supportedSubsystems

L1TopoSimulationConfig.supportedSubsystems

Definition at line 289 of file L1TopoSimulationConfig.py.

◆ tgcdecodingAcc

L1TopoSimulationConfig.tgcdecodingAcc

Definition at line 389 of file L1TopoSimulationConfig.py.

◆ triggerConfig

L1TopoSimulationConfig.triggerConfig

Definition at line 309 of file L1TopoSimulationConfig.py.

◆ triggerMenuSetup

L1TopoSimulationConfig.triggerMenuSetup

Definition at line 307 of file L1TopoSimulationConfig.py.

◆ True

L1TopoSimulationConfig.True

Definition at line 277 of file L1TopoSimulationConfig.py.

◆ type

L1TopoSimulationConfig.type

Definition at line 284 of file L1TopoSimulationConfig.py.

◆ type_names

L1TopoSimulationConfig.type_names

Definition at line 340 of file L1TopoSimulationConfig.py.

◆ withDetails

L1TopoSimulationConfig.withDetails

Definition at line 494 of file L1TopoSimulationConfig.py.

◆ writeBS

L1TopoSimulationConfig.writeBS

Definition at line 358 of file L1TopoSimulationConfig.py.

◆ xRoIBResultAcc

L1TopoSimulationConfig.xRoIBResultAcc

Definition at line 350 of file L1TopoSimulationConfig.py.

◆ xRoIBResultOutputs

L1TopoSimulationConfig.xRoIBResultOutputs

Definition at line 350 of file L1TopoSimulationConfig.py.

L1TopoByteStreamConfig.L1TopoPhase1ByteStreamToolCfg
def L1TopoPhase1ByteStreamToolCfg(flags, name, writeBS=False)
Definition: L1TopoByteStreamConfig.py:9
TrigT1MuonRecRoiToolConfig.RPCRecRoiToolCfg
def RPCRecRoiToolCfg(flags, name="RPCRecRoiTool", useRun3Config=True)
Definition: TrigT1MuonRecRoiToolConfig.py:8
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
MuonBytestreamDecodeConfig.RpcBytestreamDecodeCfg
def RpcBytestreamDecodeCfg(flags, name="RpcRawDataProvider", **kwargs)
This configuration function sets up everything for decoding RPC bytestream data into RDOs.
Definition: MuonBytestreamDecodeConfig.py:34
L1TopoInputHistograms.configureeFexInputProviderHistograms
def configureeFexInputProviderHistograms(alg, flags)
Definition: L1TopoInputHistograms.py:65
L1TopoInputHistograms.configureEMTauInputProviderHistograms
def configureEMTauInputProviderHistograms(alg, flags)
Definition: L1TopoInputHistograms.py:226
L1TopoInputHistograms.configurejFexInputProviderHistograms
def configurejFexInputProviderHistograms(alg, flags)
Definition: L1TopoInputHistograms.py:114
L1TopoInputHistograms.configureMuonInputProviderHistograms
def configureMuonInputProviderHistograms(alg, flags)
Definition: L1TopoInputHistograms.py:3
GenericMonitoringTool
Definition: GenericMonitoringTool.h:53
L1TopoInputHistograms.configureJetInputProviderHistograms
def configureJetInputProviderHistograms(alg, flags)
Definition: L1TopoInputHistograms.py:250
L1TopoInputHistograms.configuregFexInputProviderHistograms
def configuregFexInputProviderHistograms(alg, flags)
Definition: L1TopoInputHistograms.py:187
L1TopoSimulationConfig.L1TopoSimulationCfg
def L1TopoSimulationCfg(flags, doMonitoring=True, readMuCTPI=False, name="L1TopoSimulation", deactivateL1TopoMuons=False, useMuonRoIs=False, useMuonDecoder=False, writeMuonRoIs=True)
Definition: L1TopoSimulationConfig.py:46
L1TopoSimulationConfig.L1TopoSimulationStandaloneCfg
def L1TopoSimulationStandaloneCfg(flags, outputEDM=[], doMuons=False, doMonitoring=True)
Definition: L1TopoSimulationConfig.py:169
L1TopoSimulationConfig.addEDM
def addEDM(edmType, edmName)
Definition: L1TopoSimulationConfig.py:371
TrigT1ResultByteStreamConfig.MuonRoIByteStreamToolCfg
def MuonRoIByteStreamToolCfg(flags, name, writeBS=False, writeDecodedMuonRoIs=True)
Definition: TrigT1ResultByteStreamConfig.py:69
TrigT1MuonRecRoiToolConfig.TGCRecRoiToolCfg
def TGCRecRoiToolCfg(flags, name="TGCRecRoiTool", useRun3Config=True)
Definition: TrigT1MuonRecRoiToolConfig.py:18
L1TopoInputHistograms.configureEnergyInputProviderHistograms
def configureEnergyInputProviderHistograms(alg, flags)
Definition: L1TopoInputHistograms.py:220
L1TopoSimulationConfig.L1LegacyTopoSimulationCfg
def L1LegacyTopoSimulationCfg(flags)
Definition: L1TopoSimulationConfig.py:7
Trk::split
@ split
Definition: LayerMaterialProperties.h:38
MuonBytestreamDecodeConfig.TgcBytestreamDecodeCfg
def TgcBytestreamDecodeCfg(flags, name="TgcRawDataProvider", **kwargs)
Definition: MuonBytestreamDecodeConfig.py:97