Skip to content
Snippets Groups Projects
Commit eb832cac authored by Walter Lampl's avatar Walter Lampl
Browse files

more python fixes

Former-commit-id: 1b528df7
parent 3564383f
No related branches found
No related tags found
No related merge requests found
...@@ -48,9 +48,6 @@ class CaloClusterGetterBase (Configured): ...@@ -48,9 +48,6 @@ class CaloClusterGetterBase (Configured):
# The primary output class we produce. # The primary output class we produce.
_outputType = "xAOD::CaloClusterContainer" _outputType = "xAOD::CaloClusterContainer"
# This defaults to false.
_keepEachCorrection = False
def __init__ (self, seq = AlgSequence(), *args, **kw): def __init__ (self, seq = AlgSequence(), *args, **kw):
self.seq = seq self.seq = seq
Configured.__init__ (self, *args, **kw) Configured.__init__ (self, *args, **kw)
...@@ -68,7 +65,6 @@ class CaloClusterGetterBase (Configured): ...@@ -68,7 +65,6 @@ class CaloClusterGetterBase (Configured):
maker = make_CaloClusterMaker (\ maker = make_CaloClusterMaker (\
self._name, self._name,
self._outputKey, self._outputKey,
self._keepEachCorrection,
maker_tools = self.makeMakerTools (input_getter.outputKey()), maker_tools = self.makeMakerTools (input_getter.outputKey()),
correction_tools = self.makeCorrectionTools ()) correction_tools = self.makeCorrectionTools ())
except: except:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment