CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Static Private Attributes
edm::InputSourceFactory Class Reference

#include <InputSourceFactory.h>

Public Member Functions

std::unique_ptr< InputSourcemakeInputSource (ParameterSet const &, InputSourceDescription const &) const
 
 ~InputSourceFactory ()
 

Static Public Member Functions

static InputSourceFactory const * get ()
 

Private Member Functions

 InputSourceFactory ()
 

Static Private Attributes

static InputSourceFactory const singleInstance_
 

Detailed Description

Definition at line 16 of file InputSourceFactory.h.

Constructor & Destructor Documentation

edm::InputSourceFactory::~InputSourceFactory ( )

Definition at line 13 of file InputSourceFactory.cc.

14  {
15  }
edm::InputSourceFactory::InputSourceFactory ( )
private

Definition at line 17 of file InputSourceFactory.cc.

References singleInstance_.

18  {
19  }

Member Function Documentation

InputSourceFactory const * edm::InputSourceFactory::get ( )
static
std::unique_ptr< InputSource > edm::InputSourceFactory::makeInputSource ( ParameterSet const &  conf,
InputSourceDescription const &  desc 
) const

Definition at line 33 of file InputSourceFactory.cc.

References edm::errors::Configuration, Exception, FDEBUG, reco::get(), edm::ParameterSet::getParameter(), and AlCaHLTBitMon_QueryRunRegistry::string.

36  {
37  std::string modtype = conf.getParameter<std::string>("@module_type");
38  FDEBUG(1) << "InputSourceFactory: module_type = " << modtype << std::endl;
39  std::unique_ptr<InputSource> wm = std::unique_ptr<InputSource>(InputSourcePluginFactory::get()->create(modtype,conf,desc));
40 
41  if(wm.get() == nullptr) {
42  throw edm::Exception(errors::Configuration,"NoSourceModule")
43  << "InputSource Factory:\n"
44  << "Cannot find source type from ParameterSet: "
45  << modtype << "\n"
46  << "Perhaps your source type is misspelled or is not an EDM Plugin?\n"
47  << "Try running EdmPluginDump to obtain a list of available Plugins.";
48  }
49 
50  wm->registerProducts();
51 
52  FDEBUG(1) << "InputSourceFactory: created input source "
53  << modtype
54  << std::endl;
55 
56  return wm;
57  }
#define FDEBUG(lev)
Definition: DebugMacros.h:18
T get(const Candidate &c)
Definition: component.h:55

Member Data Documentation

InputSourceFactory const edm::InputSourceFactory::singleInstance_
staticprivate

Definition at line 29 of file InputSourceFactory.h.

Referenced by get(), and InputSourceFactory().