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
We have being dealing with this issue where this process TRestRawMultiFEMINOSToSignalProcess exits when processing the last event of a stopped (with ctrl+C) run .aqs file and then, the output file cannot be further processed. This is a very annoying problem because is very common to stop the run due to a trip or whatever but still want to analyze the events.
I found that the line causing this issue is this one:
At first sight it looks as a good solution, there is the TREX-DM validation pipeline that uses this process, so in case that this line causes troubles the validation might fail.
We have being dealing with this issue where this process TRestRawMultiFEMINOSToSignalProcess exits when processing the last event of a stopped (with ctrl+C) run .aqs file and then, the output file cannot be further processed. This is a very annoying problem because is very common to stop the run due to a trip or whatever but still want to analyze the events.
I found that the line causing this issue is this one:
rawlib/src/TRestRawMultiFEMINOSToSignalProcess.cxx
Line 366 in 1137fde
And changing it to
return nullptr;
works for me to solve this specific case.I am not familiar with this kind of processes so I am not sure if this change would break in other scenarios...
The text was updated successfully, but these errors were encountered: