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