Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Functions
python.EGAM8 Namespace Reference

Functions

def EGAM8SkimmingToolCfg (flags)
 
def EGAM8ZeeMassToolCfg (flags)
 
def EGAM8ZmueMassToolCfg (flags)
 
def EGAM8KernelCfg (flags, name="EGAM8Kernel", **kwargs)
 
def EGAM8Cfg (flags)
 

Function Documentation

◆ EGAM8Cfg()

def python.EGAM8.EGAM8Cfg (   flags)

Definition at line 359 of file EGAM8.py.

359 def EGAM8Cfg(flags):
360  acc = ComponentAccumulator()
361 
362  # Get the lists of triggers needed for trigger matching.
363  # This is needed at this scope (for the slimming) and further down
364  # in the config chain for actually configuring the matching, so we create
365  # it here and pass it down
366  # TODO: this should ideally be called higher up to avoid it being run
367  # multiple times in a train
368 
369  from DerivationFrameworkPhys.TriggerListsHelper import TriggerListsHelper
370 
371  EGAM8TriggerListsHelper = TriggerListsHelper(flags)
372 
373  # configure skimming/thinning/augmentation tools
374  acc.merge(
376  flags,
377  name="EGAM8Kernel",
378  StreamName="StreamDAOD_EGAM8",
379  TriggerListsHelper=EGAM8TriggerListsHelper,
380  )
381  )
382 
383  # configure slimming
384  from OutputStreamAthenaPool.OutputStreamConfig import OutputStreamCfg
385  from xAODMetaDataCnv.InfileMetaDataConfig import SetupMetaDataForStreamCfg
386  from DerivationFrameworkCore.SlimmingHelper import SlimmingHelper
387 
388  EGAM8SlimmingHelper = SlimmingHelper(
389  "EGAM8SlimmingHelper",
390  NamesAndTypes=flags.Input.TypedCollections,
391  flags=flags,
392  )
393 
394  # ------------------------------------------
395  # containers for which we save all variables
396  # -------------------------------------------
397 
398  # baseline
399  EGAM8SlimmingHelper.AllVariables = [
400  "Electrons",
401  "ForwardElectrons",
402  "GSFTrackParticles",
403  "egammaClusters",
404  "ForwardElectronClusters",
405  ]
406 
407  # for trigger studies we also add:
408  # EGAM8SlimmingHelper.AllVariables += [ ]
409 
410  # and on MC we also add:
411  if flags.Input.isMC:
412  EGAM8SlimmingHelper.AllVariables += [
413  "TruthEvents",
414  "TruthParticles",
415  "TruthVertices",
416  "egammaTruthParticles",
417  ]
418 
419  # -------------------------------------------
420  # containers that we slim
421  # -------------------------------------------
422 
423  # first add variables from smart-slimming
424  # adding only also those for which we add all variables since
425  # the XXXCPContent.py files also bring in some extra variables
426  # for other collections
427  EGAM8SlimmingHelper.SmartCollections = [
428  "Electrons",
429  "Photons",
430  "Muons",
431  "TauJets",
432  "PrimaryVertices",
433  "InDetTrackParticles",
434  "AntiKt4EMPFlowJets",
435  "BTagging_AntiKt4EMPFlow",
436  "MET_Baseline_AntiKt4EMPFlow",
437  ]
438  if flags.Input.isMC:
439  EGAM8SlimmingHelper.SmartCollections += [
440  "AntiKt4TruthJets",
441  "AntiKt4TruthDressedWZJets",
442  ]
443 
444  # then add extra variables:
445 
446  # muons
447  EGAM8SlimmingHelper.ExtraVariables += [
448  "Muons.ptcone20.ptcone30.ptcone40.etcone20.etcone30.etcone40"
449  ]
450 
451  # conversion vertices
452  EGAM8SlimmingHelper.ExtraVariables += [
453  "GSFConversionVertices.x.y.z.px.py.pz.pt1.pt2.etaAtCalo.phiAtCalo",
454  "GSFConversionVertices.trackParticleLinks",
455  ]
456 
457  # primary vertices
458  EGAM8SlimmingHelper.ExtraVariables += ["PrimaryVertices.x.y.sumPt2"]
459 
460  # track jets
461  EGAM8SlimmingHelper.ExtraVariables += [
462  "AntiKt4PV0TrackJets.pt.eta.phi.e.m.btaggingLink.constituentLinks"
463  ]
464 
465  # energy density
466  EGAM8SlimmingHelper.ExtraVariables += [
467  "TopoClusterIsoCentralEventShape.Density",
468  "TopoClusterIsoForwardEventShape.Density",
469  "NeutralParticleFlowIsoCentralEventShape.Density",
470  "NeutralParticleFlowIsoForwardEventShape.Density",
471  ]
472 
473  # photons: detailed shower shape variables
474  EGAM8SlimmingHelper.ExtraVariables += PhotonsCPDetailedContent
475 
476  # photons: gain and cluster energy per layer
477  from DerivationFrameworkCalo.DerivationFrameworkCaloConfig import (
478  getGainDecorations,
479  getClusterEnergyPerLayerDecorations,
480  )
481 
482  gainDecorations = getGainDecorations(acc, flags, "EGAM8Kernel")
483  print("EGAM8 gain decorations: ", gainDecorations)
484  EGAM8SlimmingHelper.ExtraVariables.extend(gainDecorations)
485  clusterEnergyDecorations = getClusterEnergyPerLayerDecorations(acc, "EGAM8Kernel")
486  print("EGAM8 cluster energy decorations: ", clusterEnergyDecorations)
487  EGAM8SlimmingHelper.ExtraVariables.extend(clusterEnergyDecorations)
488 
489  # truth
490  if flags.Input.isMC:
491  EGAM8SlimmingHelper.ExtraVariables += [
492  "MuonTruthParticles.e.px.py.pz.status.pdgId.truthOrigin.truthType"
493  ]
494 
495  EGAM8SlimmingHelper.ExtraVariables += [
496  "Photons.truthOrigin.truthType.truthParticleLink"
497  ]
498 
499  # Add event info
500  if flags.Derivation.Egamma.doEventInfoSlimming:
501  EGAM8SlimmingHelper.SmartCollections.append("EventInfo")
502  else:
503  EGAM8SlimmingHelper.AllVariables += ["EventInfo"]
504 
505  # Add egamma trigger objects
506  EGAM8SlimmingHelper.IncludeEGammaTriggerContent = True
507  EGAM8SlimmingHelper.IncludeMuonTriggerContent = True
508 
509  # Trigger matching
510  # Run 2
511  if flags.Trigger.EDMVersion == 2:
512  from DerivationFrameworkPhys.TriggerMatchingCommonConfig import AddRun2TriggerMatchingToSlimmingHelper
513  AddRun2TriggerMatchingToSlimmingHelper(SlimmingHelper = EGAM8SlimmingHelper,
514  OutputContainerPrefix = "TrigMatch_",
515  TriggerList = EGAM8TriggerListsHelper.Run2TriggerNamesNoTau)
516  # Run 3, or Run 2 with navigation conversion
517  if flags.Trigger.EDMVersion == 3 or (flags.Trigger.EDMVersion == 2 and flags.Trigger.doEDMVersionConversion):
518  from TrigNavSlimmingMT.TrigNavSlimmingMTConfig import AddRun3TrigNavSlimmingCollectionsToSlimmingHelper
520 
521  # Add full CellContainer
522  EGAM8SlimmingHelper.StaticContent = [
523  "CaloCellContainer#AllCalo",
524  "CaloClusterCellLinkContainer#egammaClusters_links",
525  "CaloClusterCellLinkContainer#ForwardElectronClusters_links",
526  ]
527 
528  EGAM8ItemList = EGAM8SlimmingHelper.GetItemList()
529  acc.merge(
531  flags,
532  "DAOD_EGAM8",
533  ItemList=EGAM8ItemList,
534  AcceptAlgs=["EGAM8Kernel"],
535  )
536  )
537  acc.merge(
539  flags,
540  "DAOD_EGAM8",
541  AcceptAlgs=["EGAM8Kernel"],
542  createMetadata=[
543  MetadataCategory.CutFlowMetaData,
544  MetadataCategory.TruthMetaData,
545  ],
546  )
547  )
548 
549  return acc

◆ EGAM8KernelCfg()

def python.EGAM8.EGAM8KernelCfg (   flags,
  name = "EGAM8Kernel",
**  kwargs 
)
Configure the derivation framework driving algorithm (kernel)
for EGAM8

Definition at line 124 of file EGAM8.py.

124 def EGAM8KernelCfg(flags, name="EGAM8Kernel", **kwargs):
125  """Configure the derivation framework driving algorithm (kernel)
126  for EGAM8"""
127  acc = ComponentAccumulator()
128 
129  # Common augmentations
130  from DerivationFrameworkPhys.PhysCommonConfig import PhysCommonAugmentationsCfg
131 
132  acc.merge(
134  flags, TriggerListsHelper=kwargs["TriggerListsHelper"]
135  )
136  )
137 
138  # EGAM8 augmentations
139  augmentationTools = []
140 
141  # ====================================================================
142  # ee and mue invariant masses
143  # ====================================================================
144  EGAM8ZeeMassTool = acc.popToolsAndMerge(EGAM8ZeeMassToolCfg(flags))
145  acc.addPublicTool(EGAM8ZeeMassTool)
146  augmentationTools.append(EGAM8ZeeMassTool)
147 
148  EGAM8ZmueMassTool = acc.popToolsAndMerge(EGAM8ZmueMassToolCfg(flags))
149  acc.addPublicTool(EGAM8ZmueMassTool)
150  augmentationTools.append(EGAM8ZmueMassTool)
151 
152  # ====================================================================
153  # Common calo decoration tools
154  # ====================================================================
155  from DerivationFrameworkCalo.DerivationFrameworkCaloConfig import (
156  CaloDecoratorKernelCfg)
157  acc.merge(CaloDecoratorKernelCfg(flags))
158 
159  # thinning tools
160  thinningTools = []
161  streamName = kwargs["StreamName"]
162 
163  # Track thinning
164  if flags.Derivation.Egamma.doTrackThinning:
165  from DerivationFrameworkInDet.InDetToolsConfig import (
166  TrackParticleThinningCfg,
167  MuonTrackParticleThinningCfg,
168  TauTrackParticleThinningCfg,
169  )
170 
171  TrackThinningKeepElectronTracks = True
172  TrackThinningKeepPhotonTracks = True
173  TrackThinningKeepAllElectronTracks = False
174  TrackThinningKeepJetTracks = False
175  TrackThinningKeepMuonTracks = True
176  TrackThinningKeepTauTracks = False
177  TrackThinningKeepPVTracks = False
178 
179  # Tracks associated with Electrons
180  if TrackThinningKeepElectronTracks:
181  EGAM8ElectronTPThinningTool = (
182  CompFactory.DerivationFramework.EgammaTrackParticleThinning(
183  name="EGAM8ElectronTPThinningTool",
184  StreamName=streamName,
185  SGKey="Electrons",
186  GSFTrackParticlesKey="GSFTrackParticles",
187  InDetTrackParticlesKey="InDetTrackParticles",
188  SelectionString="Electrons.pt > 0*GeV",
189  BestMatchOnly=True,
190  ConeSize=0.3,
191  )
192  )
193  acc.addPublicTool(EGAM8ElectronTPThinningTool)
194  thinningTools.append(EGAM8ElectronTPThinningTool)
195 
196  # Tracks associated with Electrons (all tracks, large cone, for track
197  # isolation studies of the selected electrons)
198  if TrackThinningKeepAllElectronTracks:
199  EGAM8ElectronTPThinningTool2 = (
200  CompFactory.DerivationFramework.EgammaTrackParticleThinning(
201  name="EGAM8ElectronTPThinningTool2",
202  StreamName=streamName,
203  SGKey="Electrons",
204  GSFTrackParticlesKey="GSFTrackParticles",
205  InDetTrackParticlesKey="InDetTrackParticles",
206  SelectionString="Electrons.pt > 4*GeV",
207  BestMatchOnly=False,
208  ConeSize=0.6,
209  )
210  )
211  acc.addPublicTool(EGAM8ElectronTPThinningTool2)
212  thinningTools.append(EGAM8ElectronTPThinningTool2)
213 
214  # Tracks associated with Photons
215  if TrackThinningKeepPhotonTracks:
216  EGAM8PhotonTPThinningTool = (
217  CompFactory.DerivationFramework.EgammaTrackParticleThinning(
218  name="EGAM8PhotonTPThinningTool",
219  StreamName=streamName,
220  SGKey="Photons",
221  GSFTrackParticlesKey="GSFTrackParticles",
222  InDetTrackParticlesKey="InDetTrackParticles",
223  GSFConversionVerticesKey="GSFConversionVertices",
224  SelectionString="Photons.pt > 0*GeV",
225  BestMatchOnly=True,
226  ConeSize=0.3,
227  )
228  )
229  acc.addPublicTool(EGAM8PhotonTPThinningTool)
230  thinningTools.append(EGAM8PhotonTPThinningTool)
231 
232  # Tracks associated with Jets
233  if TrackThinningKeepJetTracks:
234  EGAM8JetTPThinningTool = (
235  CompFactory.DerivationFramework.JetTrackParticleThinning(
236  name="EGAM8JetTPThinningTool",
237  StreamName=streamName,
238  JetKey="AntiKt4EMPFlowJets",
239  InDetTrackParticlesKey="InDetTrackParticles",
240  )
241  )
242  acc.addPublicTool(EGAM8JetTPThinningTool)
243  thinningTools.append(EGAM8JetTPThinningTool)
244 
245  # Tracks associated with Muons
246  if TrackThinningKeepMuonTracks:
247  EGAM8MuonTPThinningTool = acc.getPrimaryAndMerge(
249  flags,
250  name="EGAM8MuonTPThinningTool",
251  StreamName=streamName,
252  MuonKey="Muons",
253  InDetTrackParticlesKey="InDetTrackParticles",
254  )
255  )
256  thinningTools.append(EGAM8MuonTPThinningTool)
257 
258  # Tracks associated with Taus
259  if TrackThinningKeepTauTracks:
260  EGAM8TauTPThinningTool = acc.getPrimaryAndMerge(
262  flags,
263  name="EGAM8TauTPThinningTool",
264  StreamName=streamName,
265  TauKey="TauJets",
266  ConeSize=0.6,
267  InDetTrackParticlesKey="InDetTrackParticles",
268  DoTauTracksThinning=True,
269  TauTracksKey="TauTracks",
270  )
271  )
272  thinningTools.append(EGAM8TauTPThinningTool)
273 
274  # Tracks from primary vertex
275  thinning_expression = " && ".join(
276  [
277  "(InDetTrackParticles.DFCommonTightPrimary)",
278  "(abs(DFCommonInDetTrackZ0AtPV)*sin(InDetTrackParticles.theta)<3.0*mm)",
279  "(InDetTrackParticles.pt>10*GeV)",
280  ]
281  )
282  if TrackThinningKeepPVTracks:
283  EGAM8TPThinningTool = acc.getPrimaryAndMerge(
285  flags,
286  name="EGAM8TPThinningTool",
287  StreamName=streamName,
288  SelectionString=thinning_expression,
289  InDetTrackParticlesKey="InDetTrackParticles",
290  )
291  )
292  thinningTools.append(EGAM8TPThinningTool)
293 
294  # truth thinning
295  if flags.Input.isMC:
296  # W, Z and Higgs
297  truth_cond_WZH = " && ".join(
298  ["(abs(TruthParticles.pdgId) >= 23)", "(abs(TruthParticles.pdgId) <= 25)"]
299  )
300  # Leptons
301  truth_cond_lep = " && ".join(
302  ["(abs(TruthParticles.pdgId) >= 11)", "(abs(TruthParticles.pdgId) <= 16)"]
303  )
304  # Top quark
305  truth_cond_top = "(abs(TruthParticles.pdgId) == 6)"
306  # Photon
307  truth_cond_gam = " && ".join(
308  ["(abs(TruthParticles.pdgId) == 22)", "(TruthParticles.pt > 1*GeV)"]
309  )
310  # stable particles
311  truth_cond_finalState = "(TruthParticles.isGenStable)"
312  truth_expression = (
313  "( "
314  + truth_cond_WZH
315  + " ) || "
316  + "( "
317  + truth_cond_lep
318  + " ) || "
319  + "( "
320  + truth_cond_top
321  + " ) || "
322  + "( "
323  + truth_cond_gam
324  + " ) || "
325  + "( "
326  + truth_cond_finalState
327  + " )"
328  )
329  print("EGAM8 truth thinning expression: ", truth_expression)
330 
331  EGAM8TruthThinningTool = CompFactory.DerivationFramework.GenericTruthThinning(
332  name="EGAM8TruthThinningTool",
333  StreamName=streamName,
334  ParticleSelectionString=truth_expression,
335  PreserveDescendants=False,
336  PreserveGeneratorDescendants=True,
337  PreserveAncestors=True,
338  )
339  acc.addPublicTool(EGAM8TruthThinningTool)
340  thinningTools.append(EGAM8TruthThinningTool)
341 
342  # skimming
343  skimmingTool = acc.popToolsAndMerge(EGAM8SkimmingToolCfg(flags))
344  acc.addPublicTool(skimmingTool)
345 
346  # setup the kernel
347  acc.addEventAlgo(
348  CompFactory.DerivationFramework.DerivationKernel(
349  name,
350  SkimmingTools=[skimmingTool],
351  AugmentationTools=augmentationTools,
352  ThinningTools=thinningTools,
353  )
354  )
355 
356  return acc
357 
358 

◆ EGAM8SkimmingToolCfg()

def python.EGAM8.EGAM8SkimmingToolCfg (   flags)
Configure the EGAM8 skimming tool

Definition at line 21 of file EGAM8.py.

21 def EGAM8SkimmingToolCfg(flags):
22  """Configure the EGAM8 skimming tool"""
23  acc = ComponentAccumulator()
24 
25  expression = " || ".join(
26  [
27  "(count(EGAM8_DiElectronMass >50.0*GeV) >=1)",
28  "(count(EGAM8_MuonElectronMass >50.0*GeV) >=1)",
29  ]
30  )
31  print("EGAM8 skimming expression: ", expression)
32 
33  acc.setPrivateTools(
34  CompFactory.DerivationFramework.xAODStringSkimmingTool(
35  name="EGAM8SkimmingTool", expression=expression
36  )
37  )
38 
39  return acc
40 
41 

◆ EGAM8ZeeMassToolCfg()

def python.EGAM8.EGAM8ZeeMassToolCfg (   flags)
Configure the EGAM8 ee invariant mass augmentation tool

Definition at line 42 of file EGAM8.py.

42 def EGAM8ZeeMassToolCfg(flags):
43  """Configure the EGAM8 ee invariant mass augmentation tool"""
44  acc = ComponentAccumulator()
45 
46  # ====================================================================
47  # di-electron invariant mass for events passing the Z->ee
48  # selection based on single e trigger, for reco (central) and ID
49  # SF(central+fwd)
50  #
51  # 1 medium e, central, pT>25 GeV
52  # 1 forward e, pT>20 GeV
53  # OS+SS
54  # mee>50 GeV (cut applied in skimming step later)
55  # ====================================================================
56 
57  requirement_tag = " && ".join(
58  ["(Electrons.DFCommonElectronsLHMedium)", "(Electrons.pt > 24.5*GeV)"]
59  )
60  requirement_probe = "ForwardElectrons.pt > 19.5*GeV"
61 
62  acc.setPrivateTools(
63  CompFactory.DerivationFramework.EGInvariantMassTool(
64  name="EGAM8_ZEEMassTool",
65  Object1Requirements=requirement_tag,
66  Object2Requirements=requirement_probe,
67  StoreGateEntryName="EGAM8_DiElectronMass",
68  Mass1Hypothesis=0.511 * MeV,
69  Mass2Hypothesis=0.511 * MeV,
70  Container1Name="Electrons",
71  Container2Name="ForwardElectrons",
72  CheckCharge=False,
73  DoTransverseMass=False,
74  MinDeltaR=0.0,
75  )
76  )
77 
78  return acc
79 
80 

◆ EGAM8ZmueMassToolCfg()

def python.EGAM8.EGAM8ZmueMassToolCfg (   flags)
Configure the EGAM8 mue invariant mass augmentation tool

Definition at line 81 of file EGAM8.py.

81 def EGAM8ZmueMassToolCfg(flags):
82  """Configure the EGAM8 mue invariant mass augmentation tool"""
83  acc = ComponentAccumulator()
84 
85  # ====================================================================
86  # mue invariant mass for events passing the Z->mue selection based
87  # on single muon trigger, for ID SF(central+fwd) background studies
88  #
89  # 1 medium muon, central, pT>25 GeV
90  # 1 forward e, pT>20 GeV
91  # OS+SS
92  # m(mue)>50 GeV (cut applied in skimming step later)
93  # ====================================================================
94 
95  requirement_muon = " && ".join(
96  [
97  "Muons.pt>24.5*GeV",
98  "abs(Muons.eta)<2.7",
99  "Muons.DFCommonMuonPassPreselection",
100  ]
101  )
102  requirement_electron = "ForwardElectrons.pt > 19.5*GeV"
103 
104  acc.setPrivateTools(
105  CompFactory.DerivationFramework.EGInvariantMassTool(
106  name="EGAM8_ZMuEMassTool",
107  Object1Requirements=requirement_muon,
108  Object2Requirements=requirement_electron,
109  StoreGateEntryName="EGAM8_MuonElectronMass",
110  Mass1Hypothesis=105 * MeV,
111  Mass2Hypothesis=0.511 * MeV,
112  Container1Name="Muons",
113  Container2Name="ForwardElectrons",
114  CheckCharge=False,
115  DoTransverseMass=False,
116  MinDeltaR=0.0,
117  )
118  )
119 
120  return acc
121 
122 
123 # Main algorithm config
TrigNavSlimmingMTConfig.AddRun3TrigNavSlimmingCollectionsToSlimmingHelper
def AddRun3TrigNavSlimmingCollectionsToSlimmingHelper(slimmingHelper)
Definition: TrigNavSlimmingMTConfig.py:98
python.JetAnalysisCommon.ComponentAccumulator
ComponentAccumulator
Definition: JetAnalysisCommon.py:302
python.OutputStreamConfig.OutputStreamCfg
def OutputStreamCfg(flags, streamName, ItemList=[], MetadataItemList=[], disableEventTag=False, trigNavThinningSvc=None, takeItemsFromInput=False, extendProvenanceRecord=True, keepProvenanceTagsRegEx=None, AcceptAlgs=[], HelperTools=[])
Definition: OutputStreamConfig.py:16
python.EGAM8.EGAM8ZeeMassToolCfg
def EGAM8ZeeMassToolCfg(flags)
Definition: EGAM8.py:42
python.EGAM8.EGAM8SkimmingToolCfg
def EGAM8SkimmingToolCfg(flags)
Definition: EGAM8.py:21
python.InDetToolsConfig.TrackParticleThinningCfg
def TrackParticleThinningCfg(flags, name, **kwargs)
Definition: InDetToolsConfig.py:458
python.TriggerMatchingCommonConfig.AddRun2TriggerMatchingToSlimmingHelper
def AddRun2TriggerMatchingToSlimmingHelper(**kwargs)
Definition: TriggerMatchingCommonConfig.py:49
python.InDetToolsConfig.MuonTrackParticleThinningCfg
def MuonTrackParticleThinningCfg(flags, name, **kwargs)
Definition: InDetToolsConfig.py:542
python.InDetToolsConfig.TauTrackParticleThinningCfg
def TauTrackParticleThinningCfg(flags, name, **kwargs)
Definition: InDetToolsConfig.py:553
python.EGAM8.EGAM8KernelCfg
def EGAM8KernelCfg(flags, name="EGAM8Kernel", **kwargs)
Definition: EGAM8.py:124
print
void print(char *figname, TCanvas *c1)
Definition: TRTCalib_StrawStatusPlots.cxx:25
TCS::join
std::string join(const std::vector< std::string > &v, const char c=',')
Definition: Trigger/TrigT1/L1Topo/L1TopoCommon/Root/StringUtils.cxx:10
python.EGAM8.EGAM8ZmueMassToolCfg
def EGAM8ZmueMassToolCfg(flags)
Definition: EGAM8.py:81
python.EGAM8.EGAM8Cfg
def EGAM8Cfg(flags)
Definition: EGAM8.py:359
DerivationFrameworkCaloConfig.CaloDecoratorKernelCfg
def CaloDecoratorKernelCfg(flags, name="CaloDecoratorKernel", **kwargs)
Definition: DerivationFrameworkCaloConfig.py:82
DerivationFrameworkCaloConfig.getClusterEnergyPerLayerDecorations
def getClusterEnergyPerLayerDecorations(acc, kernel)
Definition: DerivationFrameworkCaloConfig.py:164
DerivationFrameworkCaloConfig.getGainDecorations
def getGainDecorations(acc, flags, kernel, collections=None, info=["E", "nCells"])
Definition: DerivationFrameworkCaloConfig.py:132
python.PhysCommonConfig.PhysCommonAugmentationsCfg
def PhysCommonAugmentationsCfg(flags, **kwargs)
Definition: PhysCommonConfig.py:14
InfileMetaDataConfig.SetupMetaDataForStreamCfg
def SetupMetaDataForStreamCfg(flags, streamName="", AcceptAlgs=None, createMetadata=None, propagateMetadataFromInput=True, *args, **kwargs)
Definition: InfileMetaDataConfig.py:222
SlimmingHelper
Definition: SlimmingHelper.py:1