17 produces<reco::PFRecHitCollection>();
18 produces<reco::PFRecHitCollection>(
"Cleaned");
22 std::vector<edm::ParameterSet> creators = iConfig.
getParameter<std::vector<edm::ParameterSet> >(
"producers");
23 for (
unsigned int i=0;
i<creators.size();++
i) {
50 auto out = std::make_unique<reco::PFRecHitCollection>();
51 auto cleaned = std::make_unique<reco::PFRecHitCollection>();
55 out->reserve(localRA1.upper());
56 cleaned->reserve(localRA2.upper());
58 creator->importRecHits(
out,cleaned,iEvent,iSetup);
60 if (
out->capacity()>2*
out->size())
out->shrink_to_fit();
61 if (cleaned->capacity()>2*cleaned->size()) cleaned->shrink_to_fit();
62 localRA1.update(
out->size());
63 localRA2.update(cleaned->size());
64 std::sort(
out->begin(),
out->end(),sortByDetId);
70 for(
auto& pfrechit : *
out ) {
71 navigator_->associateNeighbours(pfrechit,out,refProd);
T getParameter(std::string const &) const
std::vector< std::unique_ptr< PFRecHitCreatorBase > > creators_
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
unsigned detId() const
rechit detId
std::vector< PFRecHit > PFRecHitCollection
collection of PFRecHit objects
virtual 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.
RefProd< PROD > getRefBeforePut()
PFRecHitProducer(const edm::ParameterSet &iConfig)
static void fillDescriptions(edm::ConfigurationDescriptions &descriptions)
T get(const Candidate &c)
std::unique_ptr< PFRecHitNavigatorBase > navigator_