42 std::unique_ptr<HGCalRecHitWorkerBaseClass>
worker_;
46 : eeUncalibRecHitCollection_(
49 ps.getParameter<
edm::
InputTag>(
"HGCHEFuncalibRecHitCollection"))),
51 ps.getParameter<
edm::
InputTag>(
"HGCHEBuncalibRecHitCollection"))),
53 ps.getParameter<
edm::
InputTag>(
"HGCHFNoseuncalibRecHitCollection"))),
54 eeRechitCollection_(ps.getParameter<
std::
string>(
"HGCEErechitCollection")),
55 hefRechitCollection_(ps.getParameter<
std::
string>(
"HGCHEFrechitCollection")),
56 hebRechitCollection_(ps.getParameter<
std::
string>(
"HGCHEBrechitCollection")),
57 hfnoseRechitCollection_(ps.getParameter<
std::
string>(
"HGCHFNoserechitCollection")),
59 produces<HGCeeRecHitCollection>(eeRechitCollection_);
60 produces<HGChefRecHitCollection>(hefRechitCollection_);
61 produces<HGChebRecHitCollection>(hebRechitCollection_);
62 produces<HGChfnoseRecHitCollection>(hfnoseRechitCollection_);
82 eeUncalibRecHits = pHGCeeUncalibRecHits.
product();
85 hefUncalibRecHits = pHGChefUncalibRecHits.
product();
88 hebUncalibRecHits = pHGChebUncalibRecHits.
product();
91 if (pHGChfnoseUncalibRecHits.
isValid())
92 hfnoseUncalibRecHits = pHGChfnoseUncalibRecHits.
product();
95 auto eeRecHits = std::make_unique<HGCeeRecHitCollection>();
96 auto hefRecHits = std::make_unique<HGChefRecHitCollection>();
97 auto hebRecHits = std::make_unique<HGChebRecHitCollection>();
102 for (
auto it = eeUncalibRecHits->
begin();
it != eeUncalibRecHits->
end(); ++
it) {
107 for (
auto it = hefUncalibRecHits->
begin();
it != hefUncalibRecHits->
end(); ++
it) {
112 for (
auto it = hebUncalibRecHits->
begin();
it != hebUncalibRecHits->
end(); ++
it) {
122 LogInfo(
"HGCalRecHitInfo") <<
"total # HGCee calibrated rechits: " << eeRecHits->size();
123 LogInfo(
"HGCalRecHitInfo") <<
"total # HGChef calibrated rechits: " << hefRecHits->size();
124 LogInfo(
"HGCalRecHitInfo") <<
"total # HGCheb calibrated rechits: " << hebRecHits->size();
131 if (pHGChfnoseUncalibRecHits.
isValid()) {
132 auto hfnoseRecHits = std::make_unique<HGChfnoseRecHitCollection>();
133 for (
auto it = hfnoseUncalibRecHits->
begin();
it != hfnoseUncalibRecHits->
end(); ++
it) {
136 hfnoseRecHits->sort();
137 LogInfo(
"HGCalRecHitInfo") <<
"total # HGChfnose calibrated rechits: " << hfnoseRecHits->size();
T getParameter(std::string const &) const
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
void produce(edm::Event &evt, const edm::EventSetup &es) override
const std::string hfnoseRechitCollection_
T const * product() const
bool getByToken(EDGetToken token, Handle< PROD > &result) const
const edm::EDGetTokenT< HGChefUncalibratedRecHitCollection > hefUncalibRecHitCollection_
const edm::EDGetTokenT< HGCeeUncalibratedRecHitCollection > eeUncalibRecHitCollection_
~HGCalRecHitProducer() override
const std::string hefRechitCollection_
#define DEFINE_FWK_MODULE(type)
const_iterator begin() const
const_iterator end() const
Log< level::Info, false > LogInfo
const std::string eeRechitCollection_
HGCalRecHitProducer(const edm::ParameterSet &ps)
const std::string hebRechitCollection_
std::unique_ptr< HGCalRecHitWorkerBaseClass > worker_
const edm::EDGetTokenT< HGChebUncalibratedRecHitCollection > hebUncalibRecHitCollection_
const edm::EDGetTokenT< HGChfnoseUncalibratedRecHitCollection > hfnoseUncalibRecHitCollection_