Skip to content
Snippets Groups Projects

fix errors in the python debug output

Merged Jiri Masik requested to merge jmasik/athena:debug-log-egamma-fix into 22.0
1 file
+ 5
2
Compare changes
  • Side-by-side
  • Inline
@@ -103,8 +103,11 @@ class TrigEgammaPrecisionPhotonCaloIsoHypoToolConfig:
if self.isoInfo() != 'noiso':
if self.isoInfo() not in self.__caloIsolationCut.keys():
self.__log.error('Isolation cut %s not defined!', self.isoInfo())
self.__log.debug('Configuring Isolation cut %s with values %s for [topoetcone20/et, topoetcone30/et, topoetcone40/et]',self.isoInfo(),str(self.__caloIsolationCut[self.isoInfo()]))
self.__log.debug(' and offset values %s for [topoetcone20/et, topoetcone30/et, topoetcone40/et]',self.isoInfo(),str(self.__caloIsolationOffset[self.isoInfo()]))
self.__log.debug('Configuring Isolation cut %s for [topoetcone20/et, topoetcone30/et, topoetcone40/et]', self.isoInfo())
self.__log.debug(' with values = %s and offsets = %s',
str(self.__caloIsolationCut[self.isoInfo()]),
str(self.__caloIsolationOffset[self.isoInfo()]))
else:
self.__log.debug('Configuring Isolation to AcceptAll (not applying any cut)')
self.isoCut()
Loading