Skip to content

Commit

Permalink
Merge pull request #20 from DUNE-DAQ/johnfreeman/daq-release_issue379…
Browse files Browse the repository at this point in the history
…_renames_pt2

JCF: for DUNE-DAQ/daq-release#379, change DataLinkHandler to RawDataH…
  • Loading branch information
jcfreeman2 authored Jun 27, 2024
2 parents fa3e8af + c0e931f commit 1738763
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion plugins/FDDataHandlerModule.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ namespace fdreadoutmodules {

FDDataHandlerModule::FDDataHandlerModule(const std::string& name)
: DAQModule(name)
, DataLinkHandlerBase(name)
, RawDataHandlerBase(name)
{
//inherited_dlh::m_readout_creator = make_readout_creator("fd");

Expand Down
6 changes: 3 additions & 3 deletions plugins/FDDataHandlerModule.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@
//#include "appfwk/cmd/Structs.hpp"
#include "appfwk/DAQModule.hpp"

#include "datahandlinglibs/DataLinkHandlerBase.hpp"
#include "datahandlinglibs/RawDataHandlerBase.hpp"

#include <string>

namespace dunedaq {
namespace fdreadoutmodules {

class FDDataHandlerModule : public dunedaq::appfwk::DAQModule,
public dunedaq::datahandlinglibs::DataLinkHandlerBase
public dunedaq::datahandlinglibs::RawDataHandlerBase
{
public:
using inherited_dlh = dunedaq::datahandlinglibs::DataLinkHandlerBase;
using inherited_dlh = dunedaq::datahandlinglibs::RawDataHandlerBase;
using inherited_mod = dunedaq::appfwk::DAQModule;
/**
* @brief FDDataHandlerModule Constructor
Expand Down

0 comments on commit 1738763

Please sign in to comment.