CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
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 }
37 
38 // EDFilterBase::EDFilterBase(const EDFilterBase& rhs)
39 // {
40 // // do actual copying here;
41 // }
42 
44 {
45 }
46 
47 //
48 // assignment operators
49 //
50 // const EDFilterBase& EDFilterBase::operator=(const EDFilterBase& rhs)
51 // {
52 // //An exception safe implementation is
53 // EDFilterBase temp(rhs);
54 // swap(rhs);
55 //
56 // return *this;
57 // }
58 
59 //
60 // member functions
61 //
62 
63 //
64 // const member functions
65 //
66 
67 //
68 // static member functions
69 //
70 void
73  desc.setUnknown();
74  descriptions.addDefault(desc);
75 }
76 
77 void
79  edmodule_mightGet_config(iConfig);
80 }
81 
82 static const std::string kBaseType("EDFilter");
83 
84 const std::string&
86  return kBaseType;
87 }
#define nullptr
static void fillDescriptions(ConfigurationDescriptions &descriptions)
Definition: EDFilterBase.cc:71
void addDefault(ParameterSetDescription const &psetDescription)
void edmodule_mightGet_config(ConfigurationDescriptions &iDesc)
static const std::string & baseType()
Definition: EDFilterBase.cc:85
static const std::string kBaseType("EDAnalyzer")
static void prevalidate(ConfigurationDescriptions &descriptions)
Definition: EDFilterBase.cc:78