Definition at line 797 of file ElectronAnalysisConfig.py.
◆ __init__()
def python.ElectronAnalysisConfig.ElectronLRTMergedConfig.__init__ |
( |
|
self | ) |
|
Definition at line 798 of file ElectronAnalysisConfig.py.
799 super (ElectronLRTMergedConfig, self).__init__ ()
801 'inputElectrons',
'Electrons', type=str,
803 info=
"the name of the input electron container."
806 'inputLRTElectrons',
'LRTElectrons', type=str,
808 info=
"the name of the input LRT electron container."
811 'containerName',
'Electrons_LRTMerged', type=str,
813 info=
"the name of the output container after LRT merging."
◆ makeAlgs()
def python.ElectronAnalysisConfig.ElectronLRTMergedConfig.makeAlgs |
( |
|
self, |
|
|
|
config |
|
) |
| |
Definition at line 817 of file ElectronAnalysisConfig.py.
817 def makeAlgs (self, config) :
819 if config.isPhyslite() :
820 raise(RuntimeError(
"Electron LRT merging is not available in Physlite mode"))
822 alg = config.createAlgorithm(
"CP::ElectronLRTMergingAlg",
"ElectronLRTMergingAlg" + self.containerName )
823 alg.PromptElectronLocation = self.inputElectrons
824 alg.LRTElectronLocation = self.inputLRTElectrons
825 alg.OutputCollectionName = self.containerName
826 alg.CreateViewCollection =
False
The documentation for this class was generated from the following file: