40make_module(std::string
const& plugin_name, std::string
const& instance_name)
42 static cet::BasicPluginFactory bpf(
"duneDAQModule",
"make");
44 std::shared_ptr<DAQModule> mod_ptr;
46 mod_ptr = bpf.makePlugin<std::shared_ptr<DAQModule>>(plugin_name, instance_name);
47 }
catch (
const cet::exception& cexpt) {
48 throw DAQModuleCreationFailed(
ERS_HERE, plugin_name, instance_name, cexpt);