-
Notifications
You must be signed in to change notification settings - Fork 445
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Optionally add time of FIT channels to AO2D #13857
Conversation
REQUEST FOR PRODUCTION RELEASES:
This will add The following labels are available |
Add output spec
2137c13
to
6f539f6
Compare
Error while checking build/O2/fullCI for 929d25c at 2025-01-13 11:45:
Full log here. |
Dear @mpuccio , could you please also add |
Error while checking build/O2/fullCI for 7b4eade at 2025-01-17 23:53:
Full log here. |
@ddobrigk @pzhristov can we merge this? In this way we can start testing. @afurs I will send you an email for the additional field |
@pzhristov For me it looks good! |
@jgrosseo For some reason the auto-merging needs additional approval. Would you approve this PR to see if this is enough? If not, I can merge it manually. |
std::vector<uint8_t> aChannels; | ||
fv0aCursor.reserve(fv0RecPoints.size()); | ||
for (auto& fv0RecPoint : fv0RecPoints) { | ||
aAmplitudes.clear(); | ||
aChannels.clear(); | ||
aTimes.clear(); | ||
const auto channelData = fv0RecPoint.getBunchChannelData(fv0ChData); | ||
for (auto& channel : channelData) { | ||
if (channel.charge > 0) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
remove this condition on the charge
No description provided.