types module
Define specific and reusable types.
- CALLBACK_T
Function/method to call when a post-treater is added to an
Instrument.See also
alias of
Callable[[],Series]
- FIELD_PROBES = ('E1', 'E2', 'E3', 'E4', 'E5', 'E6', 'E7')
Electric field probes names
- MULTIPAC_DETECTOR_T
A function that takes in an
Instrumentdata and return a boolean array with same shape, indicating whether multipactor appearedalias of
Callable[[NDArray[float64]],NDArray[bool]]
- POST_TREATER_T
A function that takes in the data of an instrument and returns an array with same shape
alias of
Callable[[NDArray[float64]],NDArray[float64]]
- REDUCER_T
Functions converting an
Instrument._raw_data()to a single float valuealias of
Callable[[NDArray],float]