Skip to content

Commit

Permalink
decode-reg: add fofb_shaper_filt as decoder.
Browse files Browse the repository at this point in the history
  • Loading branch information
ericonr committed May 17, 2024
1 parent 2a7d0dd commit 7a07d2b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions app/decode-reg.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
#include "modules/bpm_swap.h"
#include "modules/fofb_cc.h"
#include "modules/fofb_processing.h"
#include "modules/fofb_shaper_filt.h"
#include "modules/lamp.h"
#include "modules/orbit_intlk.h"
#include "modules/pos_calc.h"
Expand Down Expand Up @@ -182,6 +183,8 @@ int main(int argc, char *argv[])
dec = std::make_unique<fofb_cc::Core>(bars);
} else if (type == "fofb_processing") {
dec = std::make_unique<fofb_processing::Core>(bars);
} else if (type == "fofb_shaper_filt") {
dec = std::make_unique<fofb_shaper_filt::Core>(bars);
} else if (type == "sys_id") {
dec = std::make_unique<sys_id::Core>(bars);
} else if (type == "trigger_iface") {
Expand Down

0 comments on commit 7a07d2b

Please sign in to comment.