CMS 3D CMS Logo

PFHBHERecHitCreator.h
Go to the documentation of this file.
1 #ifndef RecoParticleFlow_PFClusterProducer_PFHBHeRecHitCreator_h
2 #define RecoParticleFlow_PFClusterProducer_PFHBHeRecHitCreator_h
3 
5 
11 
17 
20 
21  public:
23  PFRecHitCreatorBase(iConfig,iC)
24  {
26  }
27 
28  void importRecHits(std::unique_ptr<reco::PFRecHitCollection>&out,std::unique_ptr<reco::PFRecHitCollection>& cleaned ,const edm::Event& iEvent,const edm::EventSetup& iSetup) override {
29 
30  beginEvent(iEvent,iSetup);
31 
33 
35  iSetup.get<CaloGeometryRecord>().get(geoHandle);
36 
37  // get the ecal geometry
38  const CaloSubdetectorGeometry *hcalBarrelGeo =
40  const CaloSubdetectorGeometry *hcalEndcapGeo =
42 
43  iEvent.getByToken(recHitToken_,recHitHandle);
44  for( const auto& erh : *recHitHandle ) {
45  const HcalDetId detid = erh.idFront();
47 
48  auto energy = erh.energy();
49  auto time = erh.time();
50  auto depth = detid.depth();
51 
52  const CaloCellGeometry *thisCell=nullptr;
54  switch(esd) {
55  case HcalBarrel:
56  thisCell =hcalBarrelGeo->getGeometry(detid);
57  layer =PFLayer::HCAL_BARREL1;
58  break;
59 
60  case HcalEndcap:
61  thisCell =hcalEndcapGeo->getGeometry(detid);
62  layer =PFLayer::HCAL_ENDCAP;
63  break;
64  default:
65  break;
66  }
67 
68  // find rechit geometry
69  if(!thisCell) {
70  edm::LogError("PFHBHERecHitCreator")
71  <<"warning detid "<<std::hex<<detid.rawId()<<std::dec<< " "
72  <<detid<<" not found in geometry"<<std::endl;
73  continue;
74  }
75 
76  reco::PFRecHit rh(thisCell, detid.rawId(),layer,
77  energy);
78  rh.setTime(time); //Mike: This we will use later
79  rh.setDepth(depth);
80 
81  bool rcleaned = false;
82  bool keep=true;
83 
84  //Apply Q tests
85  for( const auto& qtest : qualityTests_ ) {
86  if (!qtest->test(rh,erh,rcleaned)) {
87  keep = false;
88 
89  }
90  }
91 
92  if(keep) {
93  out->push_back(std::move(rh));
94  }
95  else if (rcleaned)
96  cleaned->push_back(std::move(rh));
97  }
98  }
99 
100 
101 
102  protected:
104 
105 
106 };
107 
108 
109 
110 #endif
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:45
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:508
virtual const CaloCellGeometry * getGeometry(const DetId &id) const
Get the cell geometry of a given detector id. Should return false if not found.
uint32_t rawId() const
get the raw id
Definition: DetId.h:43
const int keep
int depth() const
get the tower depth
Definition: HcalDetId.cc:108
int iEvent
Definition: GenABIO.cc:230
Particle flow rechit (rechit + geometry and topology information). See clustering algorithm in PFClus...
Definition: PFRecHit.h:31
HcalSubdetector
Definition: HcalAssistant.h:31
void beginEvent(const edm::Event &event, const edm::EventSetup &setup)
void setTime(double time)
Definition: PFRecHit.h:79
int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:37
Layer
layer definition
Definition: PFLayer.h:31
PFHBHERecHitCreator(const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
const T & get() const
Definition: EventSetup.h:55
void importRecHits(std::unique_ptr< reco::PFRecHitCollection > &out, std::unique_ptr< reco::PFRecHitCollection > &cleaned, const edm::Event &iEvent, const edm::EventSetup &iSetup) override
def move(src, dest)
Definition: eostools.py:510
edm::EDGetTokenT< edm::SortedCollection< HBHERecHit > > recHitToken_