Source code for NuRadioReco.modules.channelAddCableDelay

from NuRadioReco.modules.base.module import register_run
from NuRadioReco.utilities import units
import logging


[docs]class channelAddCableDelay: """ Adds the cable delay to channels """ def __init__(self): self.logger = logging.getLogger("NuRadioReco.channelApplyCableDelay")
[docs] @register_run() def run(self, evt, station, det, mode = 'add'): """ Adds cable delays to channels Parameters ---------- evt : Event station : Station det : Detector mode : str options: 'add' or 'subtract'. """ for channel in station.iter_channels(): cable_delay = det.get_cable_delay(station.get_id(), channel.get_id()) self.logger.debug("cable delay of channel {} is {}ns".format(channel.get_id(), cable_delay / units.ns)) if mode == 'add': channel.add_trace_start_time(cable_delay) if mode == 'subtract': channel.add_trace_start_time(-1*cable_delay)