CMS 3D CMS Logo

PFHGCalRecHitCreator.h
Go to the documentation of this file.
1 #ifndef RecoParticleFlow_PFClusterProducer_PFHGCalRecHitCreator_h
2 #define RecoParticleFlow_PFClusterProducer_PFHGCalRecHitCreator_h
3 
5 
9 
15 
22 
24 
25 template <typename DET, PFLayer::Layer Layer, DetId::Detector det, unsigned subdet>
27 public:
29  : PFRecHitCreatorBase(iConfig, iC) {
31  geometryInstance_ = iConfig.getParameter<std::string>("geometryInstance");
32  }
33 
34  void importRecHits(std::unique_ptr<reco::PFRecHitCollection>& out,
35  std::unique_ptr<reco::PFRecHitCollection>& cleaned,
36  const edm::Event& iEvent,
37  const edm::EventSetup& iSetup) override {
38  // Setup RecHitTools to properly compute the position of the HGCAL Cells vie their DetIds
40 
41  for (unsigned int i = 0; i < qualityTests_.size(); ++i) {
42  qualityTests_.at(i)->beginEvent(iEvent, iSetup);
43  }
44 
46  iEvent.getByToken(recHitToken_, recHitHandle);
47  const HGCRecHitCollection& rechits = *recHitHandle;
48 
50  iSetup.get<CaloGeometryRecord>().get(geoHandle);
51  const CaloGeometry* geom = geoHandle.product();
52 
53  unsigned skipped_rechits = 0;
54  for (const auto& hgrh : rechits) {
55  const DET detid(hgrh.detid());
56 
57  if (det != detid.det() or (subdet != 0 and subdet != detid.subdetId())) {
58  throw cms::Exception("IncorrectHGCSubdetector")
59  << "det expected: " << det << " det gotten: " << detid.det() << " ; "
60  << "subdet expected: " << subdet << " subdet gotten: " << detid.subdetId() << std::endl;
61  }
62 
63  double energy = hgrh.energy();
64  double time = hgrh.time();
65 
66  auto thisCell = geom->getSubdetectorGeometry(det, subdet)->getGeometry(detid);
67 
68  // find rechit geometry
69  if (!thisCell) {
70  LogDebug("PFHGCalRecHitCreator") << "warning detid " << detid.rawId() << " not found in geometry" << std::endl;
71  ++skipped_rechits;
72  continue;
73  }
74 
75  reco::PFRecHit rh(thisCell, detid.rawId(), Layer, energy);
76 
77  bool rcleaned = false;
78  bool keep = true;
79 
80  //Apply Q tests
81  for (unsigned int i = 0; i < qualityTests_.size(); ++i) {
82  if (!qualityTests_.at(i)->test(rh, hgrh, rcleaned)) {
83  keep = false;
84  }
85  }
86 
87  if (keep) {
88  rh.setTime(time);
89  out->push_back(rh);
90  } else if (rcleaned)
91  cleaned->push_back(rh);
92  }
93  edm::LogInfo("HGCalRecHitCreator") << "Skipped " << skipped_rechits << " out of " << rechits.size() << " rechits!"
94  << std::endl;
95  edm::LogInfo("HGCalRecHitCreator") << "Created " << out->size() << " PFRecHits!" << std::endl;
96  }
97 
98 protected:
101 
102 private:
104 };
105 
110 
114 
119 
120 #endif
#define LogDebug(id)
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:34
hgcal::RecHitTools recHitTools_
PFHGCalRecHitCreator< HGCSiliconDetId, PFLayer::HGCAL, DetId::HGCalEE, ForwardEmpty > PFHGCalEERecHitCreator
PFHGCalRecHitCreator(const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
void importRecHits(std::unique_ptr< reco::PFRecHitCollection > &out, std::unique_ptr< reco::PFRecHitCollection > &cleaned, const edm::Event &iEvent, const edm::EventSetup &iSetup) override
void getEventSetup(const edm::EventSetup &)
Definition: RecHitTools.cc:70
SeedingLayerSetsHits::SeedingLayer Layer
Definition: LayerTriplets.h:14
PFHGCalRecHitCreator< HGCalDetId, PFLayer::HGCAL, DetId::Forward, HGCEE > PFHGCEERecHitCreator
const int keep
int iEvent
Definition: GenABIO.cc:224
PFHGCalRecHitCreator< HGCScintillatorDetId, PFLayer::HGCAL, DetId::HGCalHSc, ForwardEmpty > PFHGCalHScRecHitCreator
Particle flow rechit (rechit + geometry and topology information). See clustering algorithm in PFClus...
Definition: PFRecHit.h:31
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventID const &, edm::Timestamp const & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
Definition: Activities.doc:12
PFHGCalRecHitCreator< HGCalDetId, PFLayer::HGCAL, DetId::Forward, HGCHEF > PFHGCHEFRecHitCreator
virtual std::shared_ptr< const CaloCellGeometry > getGeometry(const DetId &id) const
Get the cell geometry of a given detector id. Should return false if not found.
T get() const
Definition: EventSetup.h:73
PFHGCalRecHitCreator< HcalDetId, PFLayer::HGCAL, DetId::Hcal, HcalEndcap > PFHGCHEBRecHitCreator
PFHGCalRecHitCreator< HGCSiliconDetId, PFLayer::HGCAL, DetId::HGCalHSi, ForwardEmpty > PFHGCalHSiRecHitCreator
T const * product() const
Definition: ESHandle.h:86
edm::EDGetTokenT< HGCRecHitCollection > recHitToken_