Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Public Member Functions | List of all members
python.MuonAnalysisConfig.MuonLRTMergedConfig Class Reference
Inheritance diagram for python.MuonAnalysisConfig.MuonLRTMergedConfig:
Collaboration diagram for python.MuonAnalysisConfig.MuonLRTMergedConfig:

Public Member Functions

def __init__ (self)
 
def makeAlgs (self, config)
 

Detailed Description

Definition at line 508 of file MuonAnalysisConfig.py.

Constructor & Destructor Documentation

◆ __init__()

def python.MuonAnalysisConfig.MuonLRTMergedConfig.__init__ (   self)

Definition at line 509 of file MuonAnalysisConfig.py.

509  def __init__ (self) :
510  super (MuonLRTMergedConfig, self).__init__ ()
511  self.addOption (
512  'inputMuons', 'Muons', type=str,
513  noneAction='error',
514  info="the name of the input muon container."
515  )
516  self.addOption (
517  'inputLRTMuons', 'MuonsLRT', type=str,
518  noneAction='error',
519  info="the name of the input LRT muon container."
520  )
521  self.addOption (
522  'containerName', 'Muons_LRTMerged', type=str,
523  noneAction='error',
524  info="the name of the output container after LRT merging."
525  )
526 

Member Function Documentation

◆ makeAlgs()

def python.MuonAnalysisConfig.MuonLRTMergedConfig.makeAlgs (   self,
  config 
)

Definition at line 527 of file MuonAnalysisConfig.py.

527  def makeAlgs (self, config) :
528 
529  if config.isPhyslite() :
530  raise(RuntimeError("Muon LRT merging is not available in Physlite mode"))
531 
532  alg = config.createAlgorithm( "CP::MuonLRTMergingAlg", "MuonLRTMergingAlg" + self.containerName )
533  alg.PromptMuonLocation = self.inputMuons
534  alg.LRTMuonLocation = self.inputLRTMuons
535  alg.OutputMuonLocation = self.containerName
536  alg.UseRun3WP = config.geometry() >= LHCPeriod.Run3
537  alg.CreateViewCollection = False
538 

The documentation for this class was generated from the following file:
python.processes.powheg.ZZ.ZZ.__init__
def __init__(self, base_directory, **kwargs)
Constructor: all process options are set here.
Definition: ZZ.py:18