164 def __init__ (self) :
165 super (MuonIPCalibrationConfig, self).__init__ ()
166 self.setBlockName('MuonIPCalibration')
167 self.addDependency('Muons', required=True)
168 self.addDependency('MuonWorkingPointSelection', required=False)
169 self.addOption ('containerName', '', type=str,
170 noneAction='error',
171 info="the name of the output container after calibration.")
172 self.addOption ('postfix', "", type=str,
173 info="a postfix to apply to decorations and algorithm names. "
174 "Typically not needed here since the calibration is common to "
175 "all muons.")
176 self.addOption ('writeTrackD0Z0', False, type = bool,
177 info=r"save the $d_0$ significance and $z_0\sin\theta$ variables.")
178 self.addOption ('runTrackBiasing', False, type=bool,
179 info="This enables the `InDetTrackBiasingTool`, for tracks "
180 "associated to muons")
181