#include <FastStripCPEESProducer.h>
Public Member Functions | |
FastStripCPEESProducer (const edm::ParameterSet &p) | |
boost::shared_ptr < StripClusterParameterEstimator > | produce (const TkStripCPERecord &) |
~FastStripCPEESProducer () | |
Private Attributes | |
boost::shared_ptr < StripClusterParameterEstimator > | _cpe |
edm::ParameterSet | pset_ |
Definition at line 10 of file FastStripCPEESProducer.h.
FastStripCPEESProducer::FastStripCPEESProducer | ( | const edm::ParameterSet & | p | ) |
Definition at line 9 of file FastStripCPEESProducer.cc.
References edm::ParameterSet::getParameter(), and AlCaHLTBitMon_ParallelJobs::p.
{ std::string myname = p.getParameter<std::string>("ComponentName"); pset_ = p; setWhatProduced(this,myname); }
FastStripCPEESProducer::~FastStripCPEESProducer | ( | ) |
Definition at line 16 of file FastStripCPEESProducer.cc.
{}
boost::shared_ptr< StripClusterParameterEstimator > FastStripCPEESProducer::produce | ( | const TkStripCPERecord & | iRecord | ) |
Definition at line 19 of file FastStripCPEESProducer.cc.
{ _cpe = boost::shared_ptr<StripClusterParameterEstimator>(new FastStripCPE()); return _cpe; }
boost::shared_ptr<StripClusterParameterEstimator> FastStripCPEESProducer::_cpe [private] |
Definition at line 16 of file FastStripCPEESProducer.h.
Definition at line 17 of file FastStripCPEESProducer.h.