Skip to content

Commit

Permalink
Merge pull request #155 from DUNE-DAQ/dte/datahandlingmodel_with_idt_…
Browse files Browse the repository at this point in the history
…tpa_vector

DataHandlingModel with IDT
  • Loading branch information
denizergonul authored Nov 21, 2024
2 parents 101bfdf + 0d611a2 commit 4c38cf7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ReadoutApplication.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ ReadoutApplication::generate_modules(conffwk::Configuration* config, const std::
if (destination_class == "DataHandlerModule" || destination_class == dlh_class || destination_class == tph_class) {
if (data_type == "DataRequest") {
dlh_reqinput_qdesc = rule->get_descriptor();
} else if (data_type == "TriggerPrimitive" && get_tp_generation_enabled()) {
} else if ((data_type == "TriggerPrimitive" || data_type == "TriggerPrimitiveVector") && get_tp_generation_enabled()) {
tp_input_qdesc = rule->get_descriptor();
} else {
dlh_input_qdesc = rule->get_descriptor();
Expand Down Expand Up @@ -352,7 +352,7 @@ ReadoutApplication::generate_modules(conffwk::Configuration* config, const std::

// Create the TPs aggregator queue (from RawData Handlers to TP handlers)
tp_queue_obj = obj_fac.create_queue_sid_obj(tp_input_qdesc, sid->get_sid());
tp_queue_obj.set_by_val<uint32_t>("recv_timeout_ms", 1);
tp_queue_obj.set_by_val<uint32_t>("recv_timeout_ms", 50);
tp_queue_obj.set_by_val<uint32_t>("send_timeout_ms", 1);

tp_queues.push_back(config->get<confmodel::Connection>(tp_queue_obj.UID()));
Expand Down

0 comments on commit 4c38cf7

Please sign in to comment.