You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The data transformer currently does not match modules under a data source. For example, if the source is a multi-module detector like SPB_IRDA_JNGFR/DET/MODULE_*:daqOutput and the data is streamed from files with the "random shuffle" mode. The assembled image will be displayed with one module each time. In other word, a train will be processed multiple times, each time with a single module.
The text was updated successfully, but these errors were encountered:
For now, this is only a problem for streaming from files. The root cause is that stack_detector_modules uses regex to find the matched modules and EXtra-foam simply uses the source name * as the aggregated source name. As for the generalized geometry, this does not work since the detector module number can be something like [1, 2, 3, 6, 7, 8], in which case the module index must be provided explicitly. All in all, the solution for this is to re-implement "stack_detector_modules": should need "stack_1M_detector_modules" and "stack_jf_detector_modules" for now. Then use the module name as the first level source name.
The data transformer currently does not match modules under a data source. For example, if the source is a multi-module detector like
SPB_IRDA_JNGFR/DET/MODULE_*:daqOutput
and the data is streamed from files with the "random shuffle" mode. The assembled image will be displayed with one module each time. In other word, a train will be processed multiple times, each time with a single module.The text was updated successfully, but these errors were encountered: