correct another editing error in phoenix_trigger.py

This commit is contained in:
gac-x07mb
2024-10-15 16:44:04 +02:00
committed by wakonig_k
parent f162e8585f
commit e07a1fe66f

View File

@ -48,11 +48,10 @@ class SAMPLING(int, enum.Enum):
class PhoenixTriggerSetup(CustomDetectorMixin): class PhoenixTriggerSetup(CustomDetectorMixin):
""" """
Mixin Class to setup the PhoenixTrigger device Mixin Class to setup the PhoenixTrigger device
""" """
def on_stage(self) -> None: def on_stage(self) -> None:
""" """
@ -161,17 +160,23 @@ class PhoenixTrigger(PSIDetectorBase):
################################################################## ##################################################################
USER_ACCESS = [] USER_ACCESS = []
####################################################################
#
# # specify Setup class into variable custom_prepare_cls
# #
#################################################################### ####################################################################
# specify Setup class into variable custom_prepare_cls
custom_prepare_cls = PhoenixTriggerSetup
###################################################################
# in __init__ of PSIDetectorBase will the initialzed by # in __init__ of PSIDetectorBase will the initialzed by
# self.custom_prepare = self.custom_prepare_cls(parent=self, **kwargs) # self.custom_prepare = self.custom_prepare_cls(parent=self, **kwargs)
# making the instance of PSIDetectorBase availble to functions # making the instance of PSIDetectorBase availble to functions
# in PhoenixTriggerSetup. # in PhoenixTriggerSetup.
###################################################################### #
# This inherits, among other things, the input parameters, such as
start_csmpl = Cpt(he base class are # the notable prefix, which is here 'X07MB-OP2:'
# inherited, most notable prefix, which is here 'X07MB-OP2:'
# #
# The input of Component=Cpt is Cpt(deviceClass,suffix) # The input of Component=Cpt is Cpt(deviceClass,suffix)
# if Cpt is used in a class, which has interited Device, here via: # if Cpt is used in a class, which has interited Device, here via: