Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:12:08

0001 // -*- C++ -*-
0002 //
0003 // Package:     FWCore/Framework
0004 // Class  :     edm::stream::EDFilterBase
0005 //
0006 // Implementation:
0007 //     [Notes on implementation]
0008 //
0009 // Original Author:  Chris Jones
0010 //         Created:  Fri, 02 Aug 2013 23:49:57 GMT
0011 //
0012 
0013 // system include files
0014 
0015 // user include files
0016 #include "FWCore/Framework/interface/stream/EDFilterBase.h"
0017 #include "FWCore/Framework/src/edmodule_mightGet_config.h"
0018 
0019 #include "FWCore/ParameterSet/interface/ConfigurationDescriptions.h"
0020 #include "FWCore/ParameterSet/interface/ParameterSetDescription.h"
0021 
0022 using namespace edm::stream;
0023 //
0024 // constants, enums and typedefs
0025 //
0026 
0027 //
0028 // static data member definitions
0029 //
0030 
0031 //
0032 // constructors and destructor
0033 //
0034 EDFilterBase::EDFilterBase() : moduleDescriptionPtr_(nullptr) {}
0035 
0036 // EDFilterBase::EDFilterBase(const EDFilterBase& rhs)
0037 // {
0038 //    // do actual copying here;
0039 // }
0040 
0041 EDFilterBase::~EDFilterBase() {}
0042 
0043 //
0044 // assignment operators
0045 //
0046 // const EDFilterBase& EDFilterBase::operator=(const EDFilterBase& rhs)
0047 // {
0048 //   //An exception safe implementation is
0049 //   EDFilterBase temp(rhs);
0050 //   swap(rhs);
0051 //
0052 //   return *this;
0053 // }
0054 
0055 //
0056 // member functions
0057 //
0058 
0059 //
0060 // const member functions
0061 //
0062 
0063 //
0064 // static member functions
0065 //
0066 void EDFilterBase::fillDescriptions(ConfigurationDescriptions& descriptions) {
0067   ParameterSetDescription desc;
0068   desc.setUnknown();
0069   descriptions.addDefault(desc);
0070 }
0071 
0072 void EDFilterBase::prevalidate(ConfigurationDescriptions& iConfig) { edmodule_mightGet_config(iConfig); }
0073 
0074 static const std::string kBaseType("EDFilter");
0075 
0076 const std::string& EDFilterBase::baseType() { return kBaseType; }