def __init__(self, gulp_size=1048576, core=-1):
"""
@param[in] input_ring Ring containing a 1d
timeseries
@param[out] output_ring Ring will contain a 1d
timeseries that will be cleaned of RFI
@param[in] core Which OpenMP core to use for
this block. (-1 is any)
"""
super(KurtosisBlock, self).__init__()
self.gulp_size = gulp_size
self.core = core
self.output_header = {}
self.settings = {}
self.nchan = 1
self.dtype = np.uint8
评论列表
文章目录