289 def __init__ (self) :
290 super (ElectronIPCalibrationConfig, self).__init__ ()
291 self.setBlockName('ElectronIPCalibration')
292 self.addDependency('Electrons', required=True)
293 self.addDependency('ElectronWorkingPointSelection', required=False)
294 self.addOption ('containerName', '', type=str,
295 noneAction='error',
296 info="the name of the output container after calibration.")
297 self.addOption ('postfix', '', type=str,
298 info="a postfix to apply to decorations and algorithm names. Typically "
299 "not needed here since the calibration is common to all electrons.")
300 self.addOption ('runTrackBiasing', False, type=bool,
301 info="This enables the `InDetTrackBiasingTool`, for "
302 "tracks associated to electrons")
303 self.addOption ('writeTrackD0Z0', False, type = bool,
304 info=r"save the $d_0$ significance and $z_0\sin\theta$ variables.")
305