CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
InputSourceFactory.cc
Go to the documentation of this file.
1 
6 
7 #include <iostream>
8 
9 EDM_REGISTER_PLUGINFACTORY(edm::InputSourcePluginFactory,"CMS EDM Framework InputSource");
10 namespace edm {
11 
12 
14  {
15  }
16 
18  {
19  }
20 
22 
24  {
25  // will not work with plugin factories
26  //static InputSourceFactory f;
27  //return &f;
28 
29  return &singleInstance_;
30  }
31 
32  std::auto_ptr<InputSource>
34  InputSourceDescription const& desc) const
35 
36  {
37  std::string modtype = conf.getParameter<std::string>("@module_type");
38  FDEBUG(1) << "InputSourceFactory: module_type = " << modtype << std::endl;
39  std::auto_ptr<InputSource> wm;
40  try {
41  wm = std::auto_ptr<InputSource>(InputSourcePluginFactory::get()->create(modtype,conf,desc));
42  }
43  catch(edm::Exception& ex) {
44  ex << "\nError occurred while creating source " << modtype << "\n";
45  throw;
46  }
47  catch(cms::Exception& e) {
48  e << "\nError occurred while creating source " << modtype << "\n";
49  throw;
50  }
51 
52  if(wm.get()==0) {
53  throw edm::Exception(errors::Configuration,"NoSourceModule")
54  << "InputSource Factory:\n"
55  << "Cannot find source type from ParameterSet: "
56  << modtype << "\n"
57  << "Perhaps your source type is misspelled or is not an EDM Plugin?\n"
58  << "Try running EdmPluginDump to obtain a list of available Plugins.";
59  }
60 
61  wm->registerProducts();
62 
63  FDEBUG(1) << "InputSourceFactory: created input source "
64  << modtype
65  << std::endl;
66 
67  return wm;
68  }
69 
70 }
T getParameter(std::string const &) const
#define FDEBUG(lev)
Definition: DebugMacros.h:18
static InputSourceFactory * get()
tuple conf
Definition: dbtoconf.py:185
#define EDM_REGISTER_PLUGINFACTORY(_factory_, _category_)
std::auto_ptr< InputSource > makeInputSource(ParameterSet const &, InputSourceDescription const &) const
static InputSourceFactory singleInstance_
T get(const Candidate &c)
Definition: component.h:56