Skip to content
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

Fix help of peak basics. #1081

Merged
merged 3 commits into from
Oct 12, 2022
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions straxen/plugins/peak_processing.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class PeakBasics(strax.Plugin):
arrays.
NB: This plugin can therefore be loaded as a pandas DataFrame.
"""
__version__ = "0.1.1"
__version__ = "0.1.2"
parallel = True
depends_on = ('peaks',)
provides = 'peak_basics'
Expand All @@ -42,9 +42,9 @@ class PeakBasics(strax.Plugin):
'center_time'), np.int64),
(('Peak integral in PE',
'area'), np.float32),
(('Number of PMTs contributing to the peak',
'n_hits'), np.int32),
(('Number of hits contributing at least one sample to the peak',
'n_hits'), np.int32),
(('Number of PMTs contributing to the peak',
'n_channels'), np.int16),
(('PMT number which contributes the most PE',
'max_pmt'), np.int16),
Expand Down