CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
EmptySource.cc
Go to the documentation of this file.
6 
7 namespace edm {
9  public:
10  explicit EmptySource(ParameterSet const&, InputSourceDescription const&);
11  ~EmptySource();
12  static void fillDescriptions(ConfigurationDescriptions& descriptions);
13  private:
14  virtual bool produce(Event &);
15  };
16 
18  InputSourceDescription const& desc) :
19  GeneratedInputSource(pset, desc)
20  { }
21 
23  }
24 
25  bool
27  return true;
28  }
29 
30  void
33  desc.setComment("Creates runs, lumis and events containing no products.");
35  descriptions.add("source", desc);
36  }
37 }
38 
39 using edm::EmptySource;
static void fillDescription(ParameterSetDescription &desc)
EmptySource(ParameterSet const &, InputSourceDescription const &)
Definition: EmptySource.cc:17
void setComment(std::string const &value)
#define DEFINE_FWK_INPUT_SOURCE(type)
virtual bool produce(Event &)
Definition: EmptySource.cc:26
void add(std::string const &label, ParameterSetDescription const &psetDescription)
static void fillDescriptions(ConfigurationDescriptions &descriptions)
Definition: EmptySource.cc:31