correct another editing error in phoenix_trigger.py
This commit is contained in:
@ -48,7 +48,6 @@ 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
|
||||||
|
|
||||||
@ -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:
|
||||||
|
Reference in New Issue
Block a user