tibetscarlett
Results
2
comments of
tibetscarlett
In src/tallies/filter_time.cpp, the function "get_all_bins" seems to skip particle tracks where t_start == t_end, if the estimator is equal to "TRACKLENGTH": ``` if (estimator == TallyEstimator::TRACKLENGTH) { // ------------------------------------------------------------------------- //...
I think changing the contents of "get_all_bins" in src/tallies/filter_time.cpp to the following might work: ``` // Get the start/end time of the particle for this track const auto t_start =...