IFBeam_service.cc
Go to the documentation of this file.
1 #include "IFBeam_service.h"
2 
3 namespace ifbeam_ns {
4 
5 IFBeam::IFBeam( __attribute__((unused)) fhicl::ParameterSet const & cfg, __attribute__((unused)) art::ActivityRegistry &r) {
6  ;
7 }
8 
9 std::unique_ptr<BeamFolder>
10 IFBeam::getBeamFolder(std::string bundle_name, std::string url, double time_width) {
11  std::unique_ptr<BeamFolder> res(new BeamFolder(bundle_name, url, time_width));
12  return res;
13 }
14 }
15 
16 // DEFINE_ART_SERVICE(ifbeam_ns::IFBeam)
18 
std::string string
Definition: nybbler.cc:12
IFBeam(fhicl::ParameterSet const &cfg, art::ActivityRegistry &r)
#define DEFINE_ART_SERVICE(svc)
std::unique_ptr< BeamFolder > getBeamFolder(std::string bundle_name, std::string url="", double time_width=1200.0)