Reproduce the `proc` and coincidence result for a specific batch
reproduce.RdRecompute the processing pipeline for a specific batch index or time, including statistics and coincidence analysis. This is useful when the pipeline stores only the latest `proc` due to memory constraints.
Usage
reproduce(
batch_set,
batch_at = NULL,
batch_num = NULL,
result,
window_size = NULL,
overlap = NULL
)Arguments
- batch_set
A list of batch Rist objects per detector (output of `batching_network()`).
- batch_at
Optional numeric. GPS time (in seconds) indicating the batch to be reproduced.
- batch_num
Optional integer. Index of the batch to be reproduced.
- result
A list returned by
stream(), containingres.net,arch_params, and other pipeline results.- window_size
Optional numeric. Coincidence window size (in seconds). If
NULL, taken fromresult$arch_params.- overlap
Optional numeric. Overlap size (in seconds) for coincidence binning. If
NULL, taken fromresult$arch_params.
Value
A list with the following components:
res.netUpdated pipeline result for the specified batch.
coinc.resCoincidence analysis result for the specified batch.
batch_numThe index of the reproduced batch.