CMS 3D CMS Logo

Classes | Functions | Variables
EgammaHLTValidationUtils Namespace Reference

Classes

class  EgammaDQMModuleMaker
 

Functions

def findEgammaPaths (process)
 
def getCXXTypesOfPath (process, path)
 
def getModuleNamesOfPath (path)
 
def getModulesOfSequence (sequence)
 
def getPathsOfDataSet (process, datasetName)
 
def getProcessName (pdgGen, requiredNumberOfGeneratedObjects)
 
def getResult (self)
 
def makeGeneratedParticleAndFiducialVolumeFilter (process, pdgGen, requiredNumberOfGeneratedObjects)
 
def makePSetForEgammaGenericFilter (self, module, moduleName)
 
def makePSetForElectronGenericFilter (self, module, moduleName)
 
def makePSetForEtFilter (self, moduleName)
 
def makePSetForL1SeedFilter (self, moduleName)
 print >> sys.stderr,msgPrefix,"WARNING: unknown module type", module.type_(), " with name " + moduleName + " in path " + pathName More...
 
def makePSetForL1SeedToSuperClusterMatchFilter (self, moduleName)
 
def makePSetForOneOEMinusOneOPFilter (self, moduleName)
 
def makePSetForPixelMatchFilter (self, moduleName)
 

Variables

 module_names_found
 
 moduleMaker
 
 modules_found
 
 msgPrefix
 
 process
 

Function Documentation

◆ findEgammaPaths()

def EgammaHLTValidationUtils.findEgammaPaths (   process)
returns a dict:

 {
   "singleElectron": [ list of single electron path objects ],
   "doubleElectron": [ list of double electron path objects ],
   "singlePhoton":   [ list of single photon path objects ],
   "doublePhoton":   [ list of double photon path objects ],
 }

 Note that the elements in the lists are path objects, not path names.

 Note also that this is based on the name of the paths using some
 heuristics.

Definition at line 560 of file EgammaHLTValidationUtils.py.

References mps_setup.append.

Referenced by EmDQM.dqmBeginRun().

560 def findEgammaPaths(process):
561  """
562  returns a dict:
563 
564  {
565  "singleElectron": [ list of single electron path objects ],
566  "doubleElectron": [ list of double electron path objects ],
567  "singlePhoton": [ list of single photon path objects ],
568  "doublePhoton": [ list of double photon path objects ],
569  }
570 
571  Note that the elements in the lists are path objects, not path names.
572 
573  Note also that this is based on the name of the paths using some
574  heuristics.
575  """
576 
577  retval = { "singleElectron": [],
578  "doubleElectron": [],
579  "singlePhoton": [],
580  "doublePhoton": [],
581  }
582 
583  for path_name, path in process.paths.items():
584 
585  # print "XX",path_name.__class__,path.__class__
586 
587  if path_name.startswith("AlCa_"):
588  continue
589 
590  if path_name.startswith("DQM_"):
591  continue
592 
593  if not path_name.startswith("HLT_"):
594  continue
595 
596  if path_name.startswith("HLT_Ele"):
597  retval['singleElectron'].append(path)
598  continue
599 
600  if path_name.startswith("HLT_Photon"):
601  retval['singlePhoton'].append(path)
602  continue
603 
604  if path_name.startswith("HLT_DoublePhoton"):
605  retval['doublePhoton'].append(path)
606  continue
607 
608  if path_name.startswith("HLT_DoubleEle"):
609  retval['doubleElectron'].append(path)
610  continue
611 
612  # end of loop over paths
613  return retval
614 
615 #----------------------------------------------------------------------
616 

◆ getCXXTypesOfPath()

def EgammaHLTValidationUtils.getCXXTypesOfPath (   process,
  path 
)
returns the names of (classes) of the C++ types of the modules
found in the given path (in no particular order) 

Definition at line 654 of file EgammaHLTValidationUtils.py.

References getModuleNamesOfPath().

654 def getCXXTypesOfPath(process, path):
655  """ returns the names of (classes) of the C++ types of the modules
656  found in the given path (in no particular order) """
657 
658  moduleNames = getModuleNamesOfPath(path)
659 
660  retval = set()
661 
662  for name in moduleNames:
663 
664  # skip those modules which are in the path
665  # but not in the process object.
666  # not understood why we need to do this
667  # but seems to cause problems in practice...
668  if not hasattr(process,name):
669  continue
670 
671  module = getattr(process, name)
672 
673  retval.add(module.type_())
674 
675  return retval
676 
677 #----------------------------------------------------------------------
678 

◆ getModuleNamesOfPath()

def EgammaHLTValidationUtils.getModuleNamesOfPath (   path)
returns the names of the modules found in the given path.

Note that these are not guaranteed to be in any particular
order.

Definition at line 617 of file EgammaHLTValidationUtils.py.

References submitPVValidationJobs.__init__().

Referenced by getCXXTypesOfPath().

617 def getModuleNamesOfPath(path):
618  """ returns the names of the modules found in the given path.
619 
620  Note that these are not guaranteed to be in any particular
621  order.
622  """
623 
624  # this function could actually call getModulesOfSequence(..)
625  # and then produce a set with the unique names of
626  # the modules
627 
628  import FWCore.ParameterSet.Modules
629  class Visitor:
630 
631  #----------------------------------------
632  def __init__(self):
633  self.module_names_found = set()
634 
635  #----------------------------------------
636  def enter(self,visitee):
637 
638  if isinstance(visitee, FWCore.ParameterSet.Modules._Module):
639  self.module_names_found.add(visitee.label_())
640 
641  #----------------------------------------
642  def leave(self,visitee):
643  pass
644 
645  #----------------------------------------
646 
647  visitor = Visitor()
648  path.visit(visitor)
649 
650  return visitor.module_names_found
651 
652 
653 #----------------------------------------------------------------------
def __init__(self, dataset, job_number, job_id, job_name, isDA, isMC, applyBOWS, applyEXTRACOND, extraconditions, runboundary, lumilist, intlumi, maxevents, gt, allFromGT, alignmentDB, alignmentTAG, apeDB, apeTAG, bowDB, bowTAG, vertextype, tracktype, refittertype, ttrhtype, applyruncontrol, ptcut, CMSSW_dir, the_dir)
void add(std::map< std::string, TH1 *> &h, TH1 *hist)

◆ getModulesOfSequence()

def EgammaHLTValidationUtils.getModulesOfSequence (   sequence)
returns the modules found in a sequence.

Note that a module can appear more than once.

Definition at line 679 of file EgammaHLTValidationUtils.py.

References submitPVValidationJobs.__init__().

679 def getModulesOfSequence(sequence):
680  """ returns the modules found in a sequence.
681 
682  Note that a module can appear more than once.
683  """
684 
685  import FWCore.ParameterSet.Modules
686  class Visitor:
687 
688  #----------------------------------------
689  def __init__(self):
690  self.modules_found = []
691 
692  #----------------------------------------
693  def enter(self,visitee):
694 
695  if isinstance(visitee, FWCore.ParameterSet.Modules._Module):
696  self.modules_found.append(visitee)
697 
698  #----------------------------------------
699  def leave(self,visitee):
700  pass
701 
702  #----------------------------------------
703 
704  visitor = Visitor()
705  sequence.visitNode(visitor)
706 
707  return visitor.modules_found
708 
709 
710 #----------------------------------------------------------------------
711 
def __init__(self, dataset, job_number, job_id, job_name, isDA, isMC, applyBOWS, applyEXTRACOND, extraconditions, runboundary, lumilist, intlumi, maxevents, gt, allFromGT, alignmentDB, alignmentTAG, apeDB, apeTAG, bowDB, bowTAG, vertextype, tracktype, refittertype, ttrhtype, applyruncontrol, ptcut, CMSSW_dir, the_dir)

◆ getPathsOfDataSet()

def EgammaHLTValidationUtils.getPathsOfDataSet (   process,
  datasetName 
)
returns the names of the trigger paths contained in the
    given (primary) dataset 

Definition at line 12 of file EgammaHLTValidationUtils.py.

12 def getPathsOfDataSet(process, datasetName):
13  """ returns the names of the trigger paths contained in the
14  given (primary) dataset """
15 
16  return list(getattr(process.datasets, datasetName))
17 
18 #----------------------------------------------------------------------
19 
20 
def getPathsOfDataSet(process, datasetName)

◆ getProcessName()

def EgammaHLTValidationUtils.getProcessName (   pdgGen,
  requiredNumberOfGeneratedObjects 
)
returns a process name (such as 'Zee') which can be
 used in various places (e.g. module names etc.) 

Definition at line 21 of file EgammaHLTValidationUtils.py.

Referenced by L1GTAlgoBlockProducer.beginRun(), edm::CFWriter.branchesActivate(), edm::MixingModule.branchesActivate(), MassReplace.MassSearchReplaceAnyInputTagVisitor.doIt(), HLTConfigProvider.init(), and makeGeneratedParticleAndFiducialVolumeFilter().

21 def getProcessName(pdgGen, requiredNumberOfGeneratedObjects):
22  """ returns a process name (such as 'Zee') which can be
23  used in various places (e.g. module names etc.) """
24 
25  if pdgGen == 11:
26 
27  # electron paths
28  if requiredNumberOfGeneratedObjects == 1:
29  return "Wenu"
30  elif requiredNumberOfGeneratedObjects == 2:
31  return "Zee"
32  else:
33  raise Exception("unsupported case, can't guess type of process")
34 
35  elif pdgGen == 22:
36 
37  # photon paths
38  if requiredNumberOfGeneratedObjects == 1:
39  return 'GammaJet'
40  elif requiredNumberOfGeneratedObjects == 2:
41  return 'DiGamma'
42  else:
43  raise Exception("unsupported case, can't guess type of process")
44  else:
45  raise Exception("unsupported case, can't guess type of process")
46 
47 
48 #----------------------------------------------------------------------
49 
def getProcessName(pdgGen, requiredNumberOfGeneratedObjects)

◆ getResult()

def EgammaHLTValidationUtils.getResult (   self)
returns the composed analyzer module 

Definition at line 537 of file EgammaHLTValidationUtils.py.

537  def getResult(self):
538  """ returns the composed analyzer module """
539  return self.__result
540 

◆ makeGeneratedParticleAndFiducialVolumeFilter()

def EgammaHLTValidationUtils.makeGeneratedParticleAndFiducialVolumeFilter (   process,
  pdgGen,
  requiredNumberOfGeneratedObjects 
)
adds the needed modules to the process object and
returns a sequence made of the two filters.

returns the name of the created module

if process is not None, are added to the process.

When using this function from a _cff file, one
has to manually add the modules of the returned
sequence to globals() (in the calling module, not
here, globals() live in a different name space here)

Definition at line 50 of file EgammaHLTValidationUtils.py.

References getProcessName().

50 def makeGeneratedParticleAndFiducialVolumeFilter(process, pdgGen, requiredNumberOfGeneratedObjects):
51  """
52  adds the needed modules to the process object and
53  returns a sequence made of the two filters.
54 
55  returns the name of the created module
56 
57  if process is not None, are added to the process.
58 
59  When using this function from a _cff file, one
60  has to manually add the modules of the returned
61  sequence to globals() (in the calling module, not
62  here, globals() live in a different name space here)
63 
64  """
65 
66  # name of the physics process
67  procName = getProcessName(pdgGen, requiredNumberOfGeneratedObjects)
68 
69  #--------------------
70  # create a module producing a collection with the
71  # desired generated particles
72  #--------------------
73 
74  genPartModuleName = 'genpart' + procName
75 
76 
77  genPartModule = cms.EDFilter("PdgIdAndStatusCandViewSelector",
78  status = cms.vint32(3),
79  src = cms.InputTag("genParticles"),
80  pdgId = cms.vint32(pdgGen),
81  )
82 
83  # genPartModule.setLabel(genPartModuleName)
84  if process != None:
85  setattr(process, genPartModuleName, genPartModule)
86 
87  genPartModule.setLabel(genPartModuleName)
88 
89  #--------------------
90  # create a module requiring the number
91  # of generated particles
92  #--------------------
93 
94  selectorModuleName = "fiducial" + procName
95 
96  selectorModule = cms.EDFilter("EtaPtMinCandViewSelector",
97  src = cms.InputTag(genPartModuleName),
98  etaMin = cms.double(-2.5),
99  etaMax = cms.double(2.5),
100  ptMin = cms.double(2.0)
101  )
102 
103  if process != None:
104  setattr(process, selectorModuleName, selectorModule)
105 
106  # this is needed if we don't have a process to attach this module to
107  selectorModule.setLabel(selectorModuleName)
108 
109  #--------------------
110  # create the sequence
111  #--------------------
112 
113  return cms.Sequence(
114  # getattr(process, genPartModuleName)
115  genPartModule
116 
117  *
118 
119  # getattr(process, selectorModuleName)
120  selectorModule
121  )
122 #----------------------------------------------------------------------
123 
def makeGeneratedParticleAndFiducialVolumeFilter(process, pdgGen, requiredNumberOfGeneratedObjects)
def getProcessName(pdgGen, requiredNumberOfGeneratedObjects)

◆ makePSetForEgammaGenericFilter()

def EgammaHLTValidationUtils.makePSetForEgammaGenericFilter (   self,
  module,
  moduleName 
)

Definition at line 396 of file EgammaHLTValidationUtils.py.

References cms::cuda.assert().

Referenced by EmDQM.dqmBeginRun().

396  def makePSetForEgammaGenericFilter(self, module, moduleName):
397 
398  # example usages of HLTEgammaGenericFilter are:
399  # R9 shape filter hltL1NonIsoHLTNonIsoSingleElectronEt17TighterEleIdIsolR9ShapeFilter
400  # cluster shape filter hltL1NonIsoHLTNonIsoSingleElectronEt17TighterEleIdIsolClusterShapeFilter
401  # Ecal isolation filter hltL1NonIsoHLTNonIsoSingleElectronEt17TIghterEleIdIsolEcalIsolFilter
402  # H/E filter hltL1NonIsoHLTNonIsoSingleElectronEt17TighterEleIdIsolHEFilter
403  # HCAL isolation filter hltL1NonIsoHLTNonIsoSingleElectronEt17TighterEleIdIsolHcalIsolFilter
404 
405  # the type of object to look for seems to be the
406  # same for all uses of HLTEgammaGenericFilter
407  theHLTOutputTypes = cms.int32(TriggerTypeDefs_cfi.TriggerCluster)
408 
409  # infer the type of filter by the type of the producer which
410  # generates the collection used to cut on this
411  inputCollectionLabel = module.isoTag.moduleLabel
412 
413  inputType = getattr(self.process, inputCollectionLabel).type_()
414  # print >> sys.stderr, "inputType=",inputType,moduleName
415 
416  #--------------------
417  # sanity check: non-isolated path should be produced by the
418  # same type of module
419  #
420  # first check that the non-iso tag is non-empty
421  assert(module.nonIsoTag.moduleLabel != "")
422 
423  assert(inputType == getattr(self.process, module.nonIsoTag.moduleLabel).type_())
424 
425  #--------------------
426 
427 
428  # the following cases seem to have identical PSets ?
429 
430  #--------------------
431  # R9 shape
432  #--------------------
433 
434  if inputType == 'EgammaHLTR9Producer':
435  return cms.PSet(
436  PlotBounds = cms.vdouble(0.0, 0.0),
437  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
438  IsoCollections = cms.VInputTag(module.isoTag, module.nonIsoTag),
439  theHLTOutputTypes = theHLTOutputTypes
440  )
441 
442  #--------------------
443  # cluster shape
444  #--------------------
445  if inputType == 'EgammaHLTClusterShapeProducer':
446  return cms.PSet(
447  PlotBounds = cms.vdouble(0.0, 0.0),
448  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
449  IsoCollections = cms.VInputTag(module.isoTag, module.nonIsoTag),
450  theHLTOutputTypes = theHLTOutputTypes
451  )
452 
453  #--------------------
454  # ecal isolation
455  #--------------------
456  if inputType == 'EgammaHLTEcalRecIsolationProducer':
457  return cms.PSet(
458  PlotBounds = cms.vdouble(0.0, 0.0),
459  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
460  IsoCollections = cms.VInputTag(module.isoTag, module.nonIsoTag),
461  theHLTOutputTypes = theHLTOutputTypes
462  )
463 
464  #--------------------
465  # HCAL isolation and HE
466  #--------------------
467 
468  if inputType == 'EgammaHLTHcalIsolationProducersRegional':
469  return cms.PSet(
470  PlotBounds = cms.vdouble(0.0, 0.0),
471  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
472  IsoCollections = cms.VInputTag(module.isoTag, module.nonIsoTag),
473  theHLTOutputTypes = theHLTOutputTypes
474  )
475 
476 
477  raise Exception("can't determine what the HLTEgammaGenericFilter '" + moduleName + "' should do: uses a collection produced by a module of C++ type '" + inputType + "'")
478 
assert(be >=bs)
def makePSetForEgammaGenericFilter(self, module, moduleName)

◆ makePSetForElectronGenericFilter()

def EgammaHLTValidationUtils.makePSetForElectronGenericFilter (   self,
  module,
  moduleName 
)

Definition at line 481 of file EgammaHLTValidationUtils.py.

References cms::cuda.assert().

Referenced by EmDQM.dqmBeginRun().

481  def makePSetForElectronGenericFilter(self, module, moduleName):
482 
483  # example usages of HLTElectronGenericFilter are:
484 
485  # deta filter hltL1NonIsoHLTNonIsoSingleElectronEt17TighterEleIdIsolDetaFilter
486  # dphi filter hltL1NonIsoHLTNonIsoSingleElectronEt17TighterEleIdIsolDphiFilter
487  # track isolation hltL1NonIsoHLTNonIsoSingleElectronEt17TighterEleIdIsolTrackIsolFilter
488 
489  # the type of object to look for seems to be the
490  # same for all uses of HLTEgammaGenericFilter
491  theHLTOutputTypes = cms.int32(TriggerTypeDefs_cfi.TriggerElectron)
492 
493  # infer the type of filter by the type of the producer which
494  # generates the collection used to cut on this
495  inputCollectionLabel = module.isoTag.moduleLabel
496 
497  inputType = getattr(self.process, inputCollectionLabel).type_()
498  # print >> sys.stderr, "inputType=",inputType,moduleName
499 
500  # sanity check: non-isolated path should be produced by the
501  # same type of module
502  assert(inputType == getattr(self.process, module.nonIsoTag.moduleLabel).type_())
503 
504  # the following cases seem to have identical PSets ?
505 
506  #--------------------
507  # deta and dphi filter
508  #--------------------
509 
510  # note that whether deta or dphi is used is determined from
511  # the product instance (not the module label)
512  if inputType == 'EgammaHLTElectronDetaDphiProducer':
513 
514  return cms.PSet(
515  PlotBounds = cms.vdouble(0.0, 0.0),
516  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
517  IsoCollections = cms.VInputTag(module.isoTag, module.nonIsoTag),
518  theHLTOutputTypes = theHLTOutputTypes
519  )
520 
521  #--------------------
522  # track isolation
523  #--------------------
524 
525  if inputType == 'EgammaHLTElectronTrackIsolationProducers':
526 
527  return cms.PSet(
528  PlotBounds = cms.vdouble(0.0, 0.0),
529  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
530  IsoCollections = cms.VInputTag(module.isoTag, module.nonIsoTag),
531  theHLTOutputTypes = theHLTOutputTypes
532  )
533  raise Exception("can't determine what the HLTElectronGenericFilter '" + moduleName + "' should do: uses a collection produced by a module of C++ type '" + inputType + "'")
534 
assert(be >=bs)
def makePSetForElectronGenericFilter(self, module, moduleName)

◆ makePSetForEtFilter()

def EgammaHLTValidationUtils.makePSetForEtFilter (   self,
  moduleName 
)
generates a PSet for the Egamma DQM analyzer for the Et filter 

Definition at line 363 of file EgammaHLTValidationUtils.py.

Referenced by EmDQM.dqmBeginRun().

363  def makePSetForEtFilter(self, moduleName):
364  """ generates a PSet for the Egamma DQM analyzer for the Et filter """
365 
366  return cms.PSet(
367  PlotBounds = cms.vdouble(0.0, 0.0),
368  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
369  IsoCollections = cms.VInputTag(cms.InputTag("none")),
370  theHLTOutputTypes = cms.int32(TriggerTypeDefs_cfi.TriggerCluster)
371  )
372 
def makePSetForEtFilter(self, moduleName)

◆ makePSetForL1SeedFilter()

def EgammaHLTValidationUtils.makePSetForL1SeedFilter (   self,
  moduleName 
)

print >> sys.stderr,msgPrefix,"WARNING: unknown module type", module.type_(), " with name " + moduleName + " in path " + pathName

generates a PSet to analyze the behaviour of an L1 seed.

    moduleName is the name of the HLT module which filters
    on the L1 seed.

Definition at line 331 of file EgammaHLTValidationUtils.py.

Referenced by EmDQM.dqmBeginRun().

331  def makePSetForL1SeedFilter(self,moduleName):
332  """ generates a PSet to analyze the behaviour of an L1 seed.
333 
334  moduleName is the name of the HLT module which filters
335  on the L1 seed.
336  """
337 
338  return cms.PSet(
339  PlotBounds = cms.vdouble(0.0, 0.0),
340  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
341  IsoCollections = cms.VInputTag(cms.InputTag("none")),
342  theHLTOutputTypes = cms.int32(TriggerTypeDefs_cfi.TriggerL1NoIsoEG)
343  )
344 
def makePSetForL1SeedFilter(self, moduleName)
print >> sys.stderr,msgPrefix,"WARNING: unknown module type", module.type_(), " with name " + moduleN...

◆ makePSetForL1SeedToSuperClusterMatchFilter()

def EgammaHLTValidationUtils.makePSetForL1SeedToSuperClusterMatchFilter (   self,
  moduleName 
)
generates a PSet to analyze the behaviour of L1 to supercluster match filter.

    moduleName is the name of the HLT module which requires the match
    between supercluster and L1 seed.

Definition at line 347 of file EgammaHLTValidationUtils.py.

Referenced by EmDQM.dqmBeginRun().

347  def makePSetForL1SeedToSuperClusterMatchFilter(self,moduleName):
348  """ generates a PSet to analyze the behaviour of L1 to supercluster match filter.
349 
350  moduleName is the name of the HLT module which requires the match
351  between supercluster and L1 seed.
352  """
353 
354  return cms.PSet(
355  PlotBounds = cms.vdouble(0.0, 0.0),
356  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
357  IsoCollections = cms.VInputTag(cms.InputTag("none")),
358  theHLTOutputTypes = cms.int32(TriggerTypeDefs_cfi.TriggerCluster)
359  )
360 
def makePSetForL1SeedToSuperClusterMatchFilter(self, moduleName)

◆ makePSetForOneOEMinusOneOPFilter()

def EgammaHLTValidationUtils.makePSetForOneOEMinusOneOPFilter (   self,
  moduleName 
)

Definition at line 375 of file EgammaHLTValidationUtils.py.

Referenced by EmDQM.dqmBeginRun().

375  def makePSetForOneOEMinusOneOPFilter(self, moduleName):
376 
377  return cms.PSet(
378  PlotBounds = cms.vdouble(0.0, 0.0),
379  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
380  IsoCollections = cms.VInputTag(cms.InputTag("none")),
381  theHLTOutputTypes = cms.int32(TriggerTypeDefs_cfi.TriggerElectron)
382  )
383 
def makePSetForOneOEMinusOneOPFilter(self, moduleName)

◆ makePSetForPixelMatchFilter()

def EgammaHLTValidationUtils.makePSetForPixelMatchFilter (   self,
  moduleName 
)

Definition at line 386 of file EgammaHLTValidationUtils.py.

Referenced by EmDQM.dqmBeginRun().

386  def makePSetForPixelMatchFilter(self, moduleName):
387  return cms.PSet(
388  PlotBounds = cms.vdouble(0.0, 0.0),
389  HLTCollectionLabels = cms.InputTag(moduleName,"",self.processName),
390  IsoCollections = cms.VInputTag(cms.InputTag("none")),
391  theHLTOutputTypes = cms.int32(TriggerTypeDefs_cfi.TriggerCluster)
392  )
393 
def makePSetForPixelMatchFilter(self, moduleName)

Variable Documentation

◆ module_names_found

EgammaHLTValidationUtils.module_names_found

Definition at line 633 of file EgammaHLTValidationUtils.py.

◆ moduleMaker

EgammaHLTValidationUtils.moduleMaker

Definition at line 552 of file EgammaHLTValidationUtils.py.

◆ modules_found

EgammaHLTValidationUtils.modules_found

Definition at line 690 of file EgammaHLTValidationUtils.py.

◆ msgPrefix

EgammaHLTValidationUtils.msgPrefix

Definition at line 7 of file EgammaHLTValidationUtils.py.

◆ process

EgammaHLTValidationUtils.process

Definition at line 549 of file EgammaHLTValidationUtils.py.