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