17 produces<reco::PFRecHitCollection>();
18 produces<reco::PFRecHitCollection>(
"Cleaned");
22 std::vector<edm::ParameterSet> creators = iConfig.
getParameter<std::vector<edm::ParameterSet> >(
"producers");
23 for (
auto & creator : creators) {
46 creator->init(iSetup);
58 auto out = std::make_unique<reco::PFRecHitCollection>();
59 auto cleaned = std::make_unique<reco::PFRecHitCollection>();
63 out->reserve(localRA1.upper());
64 cleaned->reserve(localRA2.upper());
67 creator->importRecHits(
out,cleaned,iEvent,iSetup);
70 if (
out->capacity()>2*
out->size())
out->shrink_to_fit();
71 if (cleaned->capacity()>2*cleaned->size()) cleaned->shrink_to_fit();
72 localRA1.update(
out->size());
73 localRA2.update(cleaned->size());
74 std::sort(
out->begin(),
out->end(),sortByDetId);
80 for(
auto& pfrechit : *
out ) {
81 navigator_->associateNeighbours(pfrechit,out,refProd);
T getParameter(std::string const &) const
std::vector< std::unique_ptr< PFRecHitCreatorBase > > creators_
~PFRecHitProducer() override
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
def create(alignables, pedeDump, additionalData, outputFile, config)
unsigned detId() const
rechit detId
std::vector< PFRecHit > PFRecHitCollection
collection of PFRecHit objects
void produce(edm::Event &, const edm::EventSetup &) override
void addDefault(ParameterSetDescription const &psetDescription)
Particle flow rechit (rechit + geometry and topology information). See clustering algorithm in PFClus...
ConsumesCollector consumesCollector()
Use a ConsumesCollector to gather consumes information from helper functions.
void endLuminosityBlock(edm::LuminosityBlock const &, const edm::EventSetup &) override
RefProd< PROD > getRefBeforePut()
PFRecHitProducer(const edm::ParameterSet &iConfig)
void beginLuminosityBlock(edm::LuminosityBlock const &, const edm::EventSetup &) override
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
T get(const Candidate &c)
std::unique_ptr< PFRecHitNavigatorBase > navigator_