Source code for nectarchain.makers.calibration.gain.core

import logging

from ctapipe.core.traits import Bool

from ..core import NectarCAMCalibrationTool

logging.basicConfig(format="%(asctime)s %(name)s %(levelname)s %(message)s")
log = logging.getLogger(__name__)
log.handlers = logging.getLogger("__main__").handlers


__all__ = ["GainNectarCAMCalibrationTool"]


[docs] class GainNectarCAMCalibrationTool(NectarCAMCalibrationTool): reload_events = Bool( default_value=False, help="a flag to re compute the charge from raw data" )