Source code for simdesign.rcmrf.bnsm.dp04.beam
"""This module provides the beam class implementation for the ``DP04`` model in
the BNSM layer.
"""
# Imports from bnsm base library
from ..baselib.beam import BeamBase
[docs]
class Beam(BeamBase):
"""Beam implementation for the ``DP04`` model.
This class directly uses the behaviour defined in ``BeamBase``.
See Also
--------
:class:`~BeamBase`
Base class defining the core behaviour and configuration.
"""