35make_module(std::string
const& plugin_name, std::string
const& instance_name)
37 static cet::BasicPluginFactory bpf(
"duneDAQModule",
"make");
39 std::shared_ptr<DAQModule> mod_ptr;
41 mod_ptr = bpf.makePlugin<std::shared_ptr<DAQModule>>(plugin_name, instance_name);
42 }
catch (
const cet::exception& cexpt) {
43 throw DAQModuleCreationFailed(
ERS_HERE, plugin_name, instance_name, cexpt);