ATLAS Offline Software
Functions | Variables
L1TopoSimulationConfig Namespace Reference

Functions

def L1LegacyTopoSimulationCfg (flags)
 
def L1TopoSimulationCfg (flags, doMonitoring=True, readMuCTPI=False, name="L1TopoSimulation")
 
def L1TopoSimulationStandaloneCfg (flags, outputEDM=[], doMuons=False)
 
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 343 of file L1TopoSimulationConfig.py.

343  def addEDM(edmType, edmName):
344  auxType = edmType.replace('Container','AuxContainer')
345  return [f'{edmType}#{edmName}',
346  f'{auxType}#{edmName}Aux.']
347 

◆ 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" 
)

Definition at line 46 of file L1TopoSimulationConfig.py.

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

◆ L1TopoSimulationStandaloneCfg()

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

Definition at line 144 of file L1TopoSimulationConfig.py.

144 def L1TopoSimulationStandaloneCfg(flags, outputEDM=[], doMuons = False):
145 
146  acc = ComponentAccumulator()
147 
148  efex_provider_attr = ['eFexEMRoI','eFexTauRoI']
149  jfex_provider_attr = ['jFexSRJetRoI','jFexLRJetRoI','jFexFwdElRoI','jFexTauRoI','jFexMETRoI','jFexSumETRoI']
150  gfex_provider_attr = ['gFexSRJetRoI','gFexLRJetRoI', 'gScalarEJwoj','gMETComponentsJwoj','gMHTComponentsJwoj', 'gMETComponentsNoiseCut', 'gMETComponentsRms']
151  #Note: Unused container outputs from gFEX are:
152  #'gFexRhoRoI', 'gMSTComponentsJwoj', 'gScalarENoiseCut', 'gScalarERms'
153  #as compared with: https://gitlab.cern.ch/atlas/athena/-/blob/main/Trigger/TrigT1/L1CaloFEX/L1CaloFEXSim/L1CaloFEXSim/gFEXSysSim.h#L128-136
154 
155 
156  from L1TopoSimulation.L1TopoInputHistograms import configureMuonInputProviderHistograms, configureeFexInputProviderHistograms, configurejFexInputProviderHistograms, configuregFexInputProviderHistograms
157 
158  #Configure the MuonInputProvider
159  muProvider=""
160  if doMuons:
161  muProvider = CompFactory.LVL1.MuonInputProvider("MuonInputProvider")
162 
163  if flags.Trigger.L1.doMuonTopoInputs:
164  muProvider.locationMuCTPItoL1Topo = ""
165  muProvider.locationMuCTPItoL1Topo1 = ""
166  else:
167  muProvider.locationMuonRoI = ""
168  muProvider.locationMuonRoI1 = ""
169 
170  #Configure the MuonRoiTools for the MIP
171  from TrigT1MuonRecRoiTool.TrigT1MuonRecRoiToolConfig import RPCRecRoiToolCfg, TGCRecRoiToolCfg
172  muProvider.RecRpcRoiTool = acc.popToolsAndMerge(RPCRecRoiToolCfg(flags))
173  muProvider.RecTgcRoiTool = acc.popToolsAndMerge(TGCRecRoiToolCfg(flags))
174  muProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
175  muProvider.MonTool.HistPath = 'L1TopoSimulation/MuonInputProvider'
176  configureMuonInputProviderHistograms(muProvider, flags)
177 
178 
179  efexProvider = CompFactory.LVL1.eFexInputProvider("eFexInputProvider")
180  efexProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
181  efexProvider.MonTool.HistPath = 'L1TopoSimulation/eFexInputProvider'
182  configureeFexInputProviderHistograms(efexProvider, flags)
183  jfexProvider = CompFactory.LVL1.jFexInputProvider("jFexInputProvider")
184  jfexProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
185  jfexProvider.MonTool.HistPath = 'L1TopoSimulation/jFexInputProvider'
186  configurejFexInputProviderHistograms(jfexProvider, flags)
187  gfexProvider = CompFactory.LVL1.gFexInputProvider("gFexInputProvider")
188  gfexProvider.MonTool = GenericMonitoringTool(flags, 'MonTool')
189  gfexProvider.MonTool.HistPath = 'L1TopoSimulation/gFexInputProvider'
190  configuregFexInputProviderHistograms(gfexProvider, flags)
191 
192  for attr in efex_provider_attr:
193  res = [x for x in outputEDM if attr in x]
194  if len(res)>0:
195  key = res[0].split('#')[1]
196  print (f'Key found for eFEX: {key}')
197  setattr(efexProvider,attr+'Key',key)
198  else:
199  setattr(efexProvider,attr+'Key','')
200 
201  for attr in jfex_provider_attr:
202  res = [x for x in outputEDM if attr in x]
203  if len(res)>0:
204  key = res[0].split('#')[1]
205  print (f'Key found for jFEX: {key}')
206  setattr(jfexProvider,attr+'Key',key)
207  else:
208  setattr(jfexProvider,attr+'Key','')
209 
210  for attr in gfex_provider_attr:
211  res = [x for x in outputEDM if attr in x]
212  if len(res)>0:
213  key = res[0].split('#')[1]
214  print (f'Key found for gFEX: {key}')
215  setattr(gfexProvider,attr+'Key',key)
216  else:
217  setattr(gfexProvider,attr+'Key','')
218 
219  topoSimAlg = CompFactory.LVL1.L1TopoSimulation("L1TopoSimulation",
220  MuonInputProvider = muProvider,
221  EMTAUInputProvider = efexProvider,
222  JetInputProvider = jfexProvider,
223  EnergyInputProvider = gfexProvider,
224  IsLegacyTopo = False,
225  EnableInputDump = flags.Trigger.enableL1TopoDump,
226  UseBitwise = flags.Trigger.enableL1TopoBWSimulation
227  )
228 
229  acc.addEventAlgo(topoSimAlg)
230 
231  return acc
232 

Variable Documentation

◆ acc

L1TopoSimulationConfig.acc

Definition at line 305 of file L1TopoSimulationConfig.py.

◆ action

L1TopoSimulationConfig.action

Definition at line 247 of file L1TopoSimulationConfig.py.

◆ algLogLevel

L1TopoSimulationConfig.algLogLevel

Definition at line 244 of file L1TopoSimulationConfig.py.

◆ AODFileName

L1TopoSimulationConfig.AODFileName

Definition at line 288 of file L1TopoSimulationConfig.py.

◆ args

L1TopoSimulationConfig.args

Definition at line 259 of file L1TopoSimulationConfig.py.

◆ args_subsystem

L1TopoSimulationConfig.args_subsystem

Definition at line 262 of file L1TopoSimulationConfig.py.

◆ AtlasVersion

L1TopoSimulationConfig.AtlasVersion

Definition at line 301 of file L1TopoSimulationConfig.py.

◆ bool

L1TopoSimulationConfig.bool

Definition at line 258 of file L1TopoSimulationConfig.py.

◆ decodeInputs

L1TopoSimulationConfig.decodeInputs

Definition at line 390 of file L1TopoSimulationConfig.py.

◆ decoderAlg

L1TopoSimulationConfig.decoderAlg

Definition at line 428 of file L1TopoSimulationConfig.py.

◆ decoderTools

L1TopoSimulationConfig.decoderTools

Definition at line 325 of file L1TopoSimulationConfig.py.

◆ DecoderTools

L1TopoSimulationConfig.DecoderTools

Definition at line 429 of file L1TopoSimulationConfig.py.

◆ default

L1TopoSimulationConfig.default

Definition at line 248 of file L1TopoSimulationConfig.py.

◆ dest

L1TopoSimulationConfig.dest

Definition at line 247 of file L1TopoSimulationConfig.py.

◆ doFullMonMT

L1TopoSimulationConfig.doFullMonMT

Definition at line 293 of file L1TopoSimulationConfig.py.

◆ doMuon

L1TopoSimulationConfig.doMuon

Definition at line 289 of file L1TopoSimulationConfig.py.

◆ doMuons

L1TopoSimulationConfig.doMuons

Definition at line 442 of file L1TopoSimulationConfig.py.

◆ doMuonTopoInputs

L1TopoSimulationConfig.doMuonTopoInputs

Definition at line 291 of file L1TopoSimulationConfig.py.

◆ eFexTool

L1TopoSimulationConfig.eFexTool

Definition at line 390 of file L1TopoSimulationConfig.py.

◆ enableL1MuonPhase1

L1TopoSimulationConfig.enableL1MuonPhase1

Definition at line 290 of file L1TopoSimulationConfig.py.

◆ enableL1TopoBWSimulation

L1TopoSimulationConfig.enableL1TopoBWSimulation

Definition at line 292 of file L1TopoSimulationConfig.py.

◆ enableL1TopoDump

L1TopoSimulationConfig.enableL1TopoDump

Definition at line 295 of file L1TopoSimulationConfig.py.

◆ False

L1TopoSimulationConfig.False

Definition at line 250 of file L1TopoSimulationConfig.py.

◆ filename

L1TopoSimulationConfig.filename

Definition at line 264 of file L1TopoSimulationConfig.py.

◆ Files

L1TopoSimulationConfig.Files

Definition at line 284 of file L1TopoSimulationConfig.py.

◆ FillHistoBasedOnHardware

L1TopoSimulationConfig.FillHistoBasedOnHardware

Definition at line 444 of file L1TopoSimulationConfig.py.

◆ flags

L1TopoSimulationConfig.flags

Definition at line 274 of file L1TopoSimulationConfig.py.

◆ formatter_class

L1TopoSimulationConfig.formatter_class

Definition at line 246 of file L1TopoSimulationConfig.py.

◆ gFexInputByteStreamTool

L1TopoSimulationConfig.gFexInputByteStreamTool

Definition at line 416 of file L1TopoSimulationConfig.py.

◆ gFexTool

L1TopoSimulationConfig.gFexTool

Definition at line 401 of file L1TopoSimulationConfig.py.

◆ GlobalTag

L1TopoSimulationConfig.GlobalTag

Definition at line 297 of file L1TopoSimulationConfig.py.

◆ help

L1TopoSimulationConfig.help

Definition at line 247 of file L1TopoSimulationConfig.py.

◆ histSvc

L1TopoSimulationConfig.histSvc

Definition at line 456 of file L1TopoSimulationConfig.py.

◆ int

L1TopoSimulationConfig.int

Definition at line 256 of file L1TopoSimulationConfig.py.

◆ ItemList

L1TopoSimulationConfig.ItemList

Definition at line 461 of file L1TopoSimulationConfig.py.

◆ jFexInputByteStreamTool

L1TopoSimulationConfig.jFexInputByteStreamTool

Definition at line 382 of file L1TopoSimulationConfig.py.

◆ jFexTool

L1TopoSimulationConfig.jFexTool

Definition at line 372 of file L1TopoSimulationConfig.py.

◆ l1topoBSTool

L1TopoSimulationConfig.l1topoBSTool

Definition at line 423 of file L1TopoSimulationConfig.py.

◆ log

L1TopoSimulationConfig.log

Definition at line 242 of file L1TopoSimulationConfig.py.

◆ MaxEvents

L1TopoSimulationConfig.MaxEvents

Definition at line 278 of file L1TopoSimulationConfig.py.

◆ maybeMissingRobs

L1TopoSimulationConfig.maybeMissingRobs

Definition at line 327 of file L1TopoSimulationConfig.py.

◆ MaybeMissingROBs

L1TopoSimulationConfig.MaybeMissingROBs

Definition at line 430 of file L1TopoSimulationConfig.py.

◆ muonRoiTool

L1TopoSimulationConfig.muonRoiTool

Definition at line 365 of file L1TopoSimulationConfig.py.

◆ name

L1TopoSimulationConfig.name

Definition at line 330 of file L1TopoSimulationConfig.py.

◆ nargs

L1TopoSimulationConfig.nargs

Definition at line 247 of file L1TopoSimulationConfig.py.

◆ NumConcurrentEvents

L1TopoSimulationConfig.NumConcurrentEvents

Definition at line 286 of file L1TopoSimulationConfig.py.

◆ NumThreads

L1TopoSimulationConfig.NumThreads

Definition at line 285 of file L1TopoSimulationConfig.py.

◆ Output

L1TopoSimulationConfig.Output

Definition at line 456 of file L1TopoSimulationConfig.py.

◆ outputEDM

L1TopoSimulationConfig.outputEDM

Definition at line 326 of file L1TopoSimulationConfig.py.

◆ OutputJSON

L1TopoSimulationConfig.OutputJSON

Definition at line 294 of file L1TopoSimulationConfig.py.

◆ OutputLevel

L1TopoSimulationConfig.OutputLevel

Definition at line 276 of file L1TopoSimulationConfig.py.

◆ parser

L1TopoSimulationConfig.parser

Definition at line 246 of file L1TopoSimulationConfig.py.

◆ PrescaleDAQROBAccess

L1TopoSimulationConfig.PrescaleDAQROBAccess

Definition at line 445 of file L1TopoSimulationConfig.py.

◆ printDefaults

L1TopoSimulationConfig.printDefaults

Definition at line 466 of file L1TopoSimulationConfig.py.

◆ required

L1TopoSimulationConfig.required

Definition at line 247 of file L1TopoSimulationConfig.py.

◆ roib2topo

L1TopoSimulationConfig.roib2topo

Definition at line 435 of file L1TopoSimulationConfig.py.

◆ roibResultTool

L1TopoSimulationConfig.roibResultTool

Definition at line 330 of file L1TopoSimulationConfig.py.

◆ rpcdecodingAcc

L1TopoSimulationConfig.rpcdecodingAcc

Definition at line 359 of file L1TopoSimulationConfig.py.

◆ sequenceName

L1TopoSimulationConfig.sequenceName

Definition at line 433 of file L1TopoSimulationConfig.py.

◆ SkipEvents

L1TopoSimulationConfig.SkipEvents

Definition at line 287 of file L1TopoSimulationConfig.py.

◆ subsystem

L1TopoSimulationConfig.subsystem

Definition at line 263 of file L1TopoSimulationConfig.py.

◆ summariseProps

L1TopoSimulationConfig.summariseProps

Definition at line 466 of file L1TopoSimulationConfig.py.

◆ supportedSubsystems

L1TopoSimulationConfig.supportedSubsystems

Definition at line 261 of file L1TopoSimulationConfig.py.

◆ tgcdecodingAcc

L1TopoSimulationConfig.tgcdecodingAcc

Definition at line 361 of file L1TopoSimulationConfig.py.

◆ triggerConfig

L1TopoSimulationConfig.triggerConfig

Definition at line 281 of file L1TopoSimulationConfig.py.

◆ triggerMenuSetup

L1TopoSimulationConfig.triggerMenuSetup

Definition at line 279 of file L1TopoSimulationConfig.py.

◆ True

L1TopoSimulationConfig.True

Definition at line 249 of file L1TopoSimulationConfig.py.

◆ type

L1TopoSimulationConfig.type

Definition at line 256 of file L1TopoSimulationConfig.py.

◆ type_names

L1TopoSimulationConfig.type_names

Definition at line 312 of file L1TopoSimulationConfig.py.

◆ withDetails

L1TopoSimulationConfig.withDetails

Definition at line 466 of file L1TopoSimulationConfig.py.

◆ writeBS

L1TopoSimulationConfig.writeBS

Definition at line 330 of file L1TopoSimulationConfig.py.

◆ xRoIBResultAcc

L1TopoSimulationConfig.xRoIBResultAcc

Definition at line 322 of file L1TopoSimulationConfig.py.

◆ xRoIBResultOutputs

L1TopoSimulationConfig.xRoIBResultOutputs

Definition at line 322 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
L1TopoSimulationConfig.L1TopoSimulationCfg
def L1TopoSimulationCfg(flags, doMonitoring=True, readMuCTPI=False, name="L1TopoSimulation")
Definition: L1TopoSimulationConfig.py:46
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.addEDM
def addEDM(edmType, edmName)
Definition: L1TopoSimulationConfig.py:343
L1TopoSimulationConfig.L1TopoSimulationStandaloneCfg
def L1TopoSimulationStandaloneCfg(flags, outputEDM=[], doMuons=False)
Definition: L1TopoSimulationConfig.py:144
TrigT1MuonRecRoiToolConfig.TGCRecRoiToolCfg
def TGCRecRoiToolCfg(flags, name="TGCRecRoiTool", useRun3Config=True)
Definition: TrigT1MuonRecRoiToolConfig.py:20
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