CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
RecoTauPluginsCommon.cc
Go to the documentation of this file.
2 
3 namespace reco { namespace tau {
4 
5 // ctor
7  name_(pset.getParameter<std::string>("name")) {}
8 
10 { return name_; }
11 
12 // ctor
14  :RecoTauNamedPlugin(pset),evt_(NULL),es_(NULL) {}
15 
16 const edm::Event* RecoTauEventHolderPlugin::evt() const { return evt_; }
18 
20 {
21  evt_ = &evt;
22  es_ = &es;
23  // Call the virtual beginEvent() function
24  this->beginEvent();
25 }
26 
27 } } // end reco::tau
28 
RecoTauEventHolderPlugin(const edm::ParameterSet &pset)
RecoTauNamedPlugin(const edm::ParameterSet &pset)
#define NULL
Definition: scimark2.h:8
const edm::EventSetup * evtSetup() const
void setup(const edm::Event &, const edm::EventSetup &)
const std::string & name() const