We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
While it is possible to fill histograms, it is currently impossible to select the bins in a vectorized way.
E.g. a vectorized processing with a batch_size of 10000 will have
batch_size
len(event.pileup) == 1000
when selecting the correct bins the corresponding functions, e.g. _get_pu_bin need to handle array input:
_get_pu_bin
pileupBins=[0,10,15,20,30,999] _get_pu_bin(23) # --> 3 _get_pu_bin([12, 23, 33]) # --> [1, 3, 4]
The text was updated successfully, but these errors were encountered:
@benkrikler related to #39?
Sorry, something went wrong.
kreczko
No branches or pull requests
While it is possible to fill histograms, it is currently impossible to select the bins in a vectorized way.
E.g. a vectorized processing with a
batch_size
of 10000 will havewhen selecting the correct bins the corresponding functions, e.g.
_get_pu_bin
need to handle array input:The text was updated successfully, but these errors were encountered: