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
This is due to the fInputEventTreeTimestamp being in milliseconds and the method TRestEvent::SetTime second parameter is nanoseconds. So the subsecond information of the timestamp is not correct. This should be solved easily by just changing that line to fSignalEvent->SetTime(fInputEventTreeTimestamp / 1000, fInputEventTreeTimestamp % 1000 * 1.e6);
The text was updated successfully, but these errors were encountered:
The timestamp of the event is not set correctly in this line:
rawlib/src/TRestRawFeminosRootToSignalProcess.cxx
Lines 126 to 127 in a4ba0c1
This is due to the fInputEventTreeTimestamp being in milliseconds and the method TRestEvent::SetTime second parameter is nanoseconds. So the subsecond information of the timestamp is not correct. This should be solved easily by just changing that line to
fSignalEvent->SetTime(fInputEventTreeTimestamp / 1000, fInputEventTreeTimestamp % 1000 * 1.e6);
The text was updated successfully, but these errors were encountered: