179 def __init__ (self) :
180 super (MuonIPCalibrationConfig, self).__init__ ()
181 self.setBlockName('MuonIPCalibration')
182 self.addDependency('Muons', required=True)
183 self.addDependency('MuonWorkingPointSelection', required=False)
184 self.addOption ('containerName', '', type=str,
185 noneAction='error',
186 info="the name of the output container after calibration.",
187 meta={'role':'containerRef'})
188 self.addOption ('postfix', "", type=str,
189 info="a postfix to apply to decorations and algorithm names. "
190 "Typically not needed here since the calibration is common to "
191 "all muons.")
192 self.addOption ('writeTrackD0Z0', False, type = bool,
193 info=r"save the $d_0$ significance and $z_0\sin\theta$ variables.")
194 self.addOption ('runTrackBiasing', False, type=bool,
195 info="This enables the `InDetTrackBiasingTool`, for tracks "
196 "associated to muons")
197