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

Threshold By Plane Configurables #35

Merged
merged 4 commits into from
May 14, 2024
Merged
Changes from 1 commit
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
3 changes: 3 additions & 0 deletions schema/fddaqconf/readoutgen.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ local cs = {
s.field( "fragment_send_timeout_ms", types.count, default=10, doc="The send timeout that will be used in the readout modules when sending fragments downstream (i.e. to the TRB)."),
s.field( "enable_tpg", types.flag, default=false, doc="Enable TPG"),
s.field( "tpg_threshold", types.count, default=120, doc="Select TPG threshold"),
s.field( "induction1_threshold", types.count, default=0, doc="Select TPG threshold for Induction 1 plane. Defaults to tpg_threshold value."),
s.field( "induction2_threshold", types.count, default=0, doc="Select TPG threshold for Induction 2 plane. Defaults to tpg_threshold value."),
s.field( "collection_threshold", types.count, default=0, doc="Select TPG threshold for Collection plane. Defaults to tpg_threshold value."),
s.field( "tpg_rs_memory_factor", types.float4, default=0.8, doc="Memory factor (R) for the TPG running sum algorithms"),
s.field( "tpg_rs_scale_factor", types.count, default=2, doc="Scale factor for the TPG running sum algorithms"),
s.field( "tpg_frugal_streaming_accumulator_limit", types.count, default=10, doc="Accumulator limit for the frugal streaming method"),
Expand Down
Loading