ChannelFunction¶
- class vallenae.processor.ChannelFunction(value)[source]¶
Per-channel role used by the Event Builder.
Matches the channel function assignment of VisualAE’s Location Settings dialog.
- __init__(*args, **kwds)¶
Methods
Returns self, the complex conjugate of any int.
Number of bits necessary to represent self in binary.
Number of ones in the binary representation of the absolute value of self.
to_bytes([length, byteorder, signed])Return an array of bytes representing an integer.
from_bytes(bytes[, byteorder, signed])Return the integer represented by the given array of bytes.
Return integer ratio.
__init__(*args, **kwds)Attributes
the real part of a complex number
the imaginary part of a complex number
the numerator of a rational number in lowest terms
the denominator of a rational number in lowest terms
Channel is excluded from event building entirely.
Channel participates in event building and can start an event.
Inhibits event building for FHCDT when this would be the first-hit channel; included as a subsequent hit if an event is already open.
Acts as
ChannelFunction.GUARDwhen it would be the first-hit channel; acts asChannelFunction.NORMALotherwise.- UNUSED = 0¶
Channel is excluded from event building entirely.
- NORMAL = 1¶
Channel participates in event building and can start an event.
- GUARD = 2¶
Inhibits event building for FHCDT when this would be the first-hit channel; included as a subsequent hit if an event is already open.
- COMBINED = 3¶
Acts as
ChannelFunction.GUARDwhen it would be the first-hit channel; acts asChannelFunction.NORMALotherwise.
- conjugate()¶
Returns self, the complex conjugate of any int.
- bit_length()¶
Number of bits necessary to represent self in binary.
>>> bin(37) '0b100101' >>> (37).bit_length() 6
- bit_count()¶
Number of ones in the binary representation of the absolute value of self.
Also known as the population count.
>>> bin(13) '0b1101' >>> (13).bit_count() 3
- as_integer_ratio()¶
Return integer ratio.
Return a pair of integers, whose ratio is exactly equal to the original int and with a positive denominator.
>>> (10).as_integer_ratio() (10, 1) >>> (-10).as_integer_ratio() (-10, 1) >>> (0).as_integer_ratio() (0, 1)
- real¶
the real part of a complex number
- imag¶
the imaginary part of a complex number
- numerator¶
the numerator of a rational number in lowest terms
- denominator¶
the denominator of a rational number in lowest terms