diff --git a/app/decode-reg.cc b/app/decode-reg.cc index 8b855db..fb06f5b 100644 --- a/app/decode-reg.cc +++ b/app/decode-reg.cc @@ -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" @@ -182,6 +183,8 @@ int main(int argc, char *argv[]) dec = std::make_unique(bars); } else if (type == "fofb_processing") { dec = std::make_unique(bars); + } else if (type == "fofb_shaper_filt") { + dec = std::make_unique(bars); } else if (type == "sys_id") { dec = std::make_unique(bars); } else if (type == "trigger_iface") {