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