CMS 3D CMS Logo

EDFilterBase.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: FWCore/Framework
4 // Class : edm::stream::EDFilterBase
5 //
6 // Implementation:
7 // [Notes on implementation]
8 //
9 // Original Author: Chris Jones
10 // Created: Fri, 02 Aug 2013 23:49:57 GMT
11 //
12 
13 // system include files
14 
15 // user include files
18 
21 
22 using namespace edm::stream;
23 //
24 // constants, enums and typedefs
25 //
26 
27 //
28 // static data member definitions
29 //
30 
31 //
32 // constructors and destructor
33 //
34 EDFilterBase::EDFilterBase() : moduleDescriptionPtr_(nullptr) {}
35 
36 // EDFilterBase::EDFilterBase(const EDFilterBase& rhs)
37 // {
38 // // do actual copying here;
39 // }
40 
42 
43 //
44 // assignment operators
45 //
46 // const EDFilterBase& EDFilterBase::operator=(const EDFilterBase& rhs)
47 // {
48 // //An exception safe implementation is
49 // EDFilterBase temp(rhs);
50 // swap(rhs);
51 //
52 // return *this;
53 // }
54 
55 //
56 // member functions
57 //
58 
59 //
60 // const member functions
61 //
62 
63 //
64 // static member functions
65 //
68  desc.setUnknown();
69  descriptions.addDefault(desc);
70 }
71 
73 
74 static const std::string kBaseType("EDFilter");
75 
#define nullptr
static void fillDescriptions(ConfigurationDescriptions &descriptions)
Definition: EDFilterBase.cc:66
void addDefault(ParameterSetDescription const &psetDescription)
void edmodule_mightGet_config(ConfigurationDescriptions &iDesc)
static const std::string & baseType()
Definition: EDFilterBase.cc:76
static const std::string kBaseType("EDAnalyzer")
static void prevalidate(ConfigurationDescriptions &descriptions)
Definition: EDFilterBase.cc:72