Skip to content
Open
Changes from all 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
11 changes: 10 additions & 1 deletion src/proto_nd_flow/reco/charge/calib_prompt_hits.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,11 @@ class CalibHitBuilder(H5FlowStage):
Q_raw f8, hit charge [ke-] (uncalibrated for ADC droop)
Q f8, calibrated hit charge with ADC droop corrections
E f8, hit energy [MeV]
is_disabled ? , Missing definition FIXME
x_corr f8, drift-time corrected x location [cm]
t_0 i2, charge-light matching timestamp [ns]
t_confidence f4, charge-light matching accuracy confidence
t_cluster_id i2, charge-light matching cluster definition

'''
class_version = '1.0.0'
Expand All @@ -83,7 +88,11 @@ class CalibHitBuilder(H5FlowStage):
('Q_raw', 'f8'),
('Q', 'f8'),
('E', 'f8'),
('is_disabled', '?')
('is_disabled', '?'),
('x_corr', 'f8'),
('t_0', 'i2'),
('t_confidence','f4'),
('t_cluster_id','i2')
])

default_pedestal_mv = 580
Expand Down
Loading