CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes
PFHBHERecHitCreator Class Reference

#include <PFHBHERecHitCreator.h>

Inheritance diagram for PFHBHERecHitCreator:
PFRecHitCreatorBase

Public Member Functions

void importRecHits (std::unique_ptr< reco::PFRecHitCollection > &out, std::unique_ptr< reco::PFRecHitCollection > &cleaned, const edm::Event &iEvent, const edm::EventSetup &iSetup) override
 
 PFHBHERecHitCreator (const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
 
- Public Member Functions inherited from PFRecHitCreatorBase
virtual void init (const edm::EventSetup &es)
 
 PFRecHitCreatorBase ()
 
 PFRecHitCreatorBase (const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
 
virtual ~PFRecHitCreatorBase ()=default
 

Protected Attributes

edm::EDGetTokenT< edm::SortedCollection< HBHERecHit > > recHitToken_
 
- Protected Attributes inherited from PFRecHitCreatorBase
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
 

Additional Inherited Members

- Protected Member Functions inherited from PFRecHitCreatorBase
void beginEvent (const edm::Event &event, const edm::EventSetup &setup)
 

Detailed Description

Definition at line 19 of file PFHBHERecHitCreator.h.

Constructor & Destructor Documentation

PFHBHERecHitCreator::PFHBHERecHitCreator ( const edm::ParameterSet iConfig,
edm::ConsumesCollector iC 
)
inline

Definition at line 22 of file PFHBHERecHitCreator.h.

References edm::ConsumesCollector::consumes(), edm::ParameterSet::getParameter(), and recHitToken_.

22  :
23  PFRecHitCreatorBase(iConfig,iC)
24  {
26  }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
edm::EDGetTokenT< edm::SortedCollection< HBHERecHit > > recHitToken_

Member Function Documentation

void PFHBHERecHitCreator::importRecHits ( std::unique_ptr< reco::PFRecHitCollection > &  out,
std::unique_ptr< reco::PFRecHitCollection > &  cleaned,
const edm::Event iEvent,
const edm::EventSetup iSetup 
)
inlineoverridevirtual

Implements PFRecHitCreatorBase.

Definition at line 28 of file PFHBHERecHitCreator.h.

References PFRecHitCreatorBase::beginEvent(), TauDecayModes::dec, egammaForCoreTracking_cff::depth, HcalDetId::depth(), edm::EventSetup::get(), edm::Event::getByToken(), CaloSubdetectorGeometry::getGeometry(), CaloGeometry::getSubdetectorGeometry(), DetId::Hcal, PFLayer::HCAL_BARREL1, PFLayer::HCAL_ENDCAP, HcalBarrel, HcalEndcap, keep, eostools::move(), PFRecHitCreatorBase::qualityTests_, DetId::rawId(), recHitToken_, reco::PFRecHit::setTime(), DetId::subdetId(), and protons_cff::time.

28  {
29 
30  beginEvent(iEvent,iSetup);
31 
33 
35  iSetup.get<CaloGeometryRecord>().get(geoHandle);
36 
37  // get the ecal geometry
38  const CaloSubdetectorGeometry *hcalBarrelGeo = geoHandle->getSubdetectorGeometry(DetId::Hcal, HcalBarrel);
39  const CaloSubdetectorGeometry *hcalEndcapGeo = geoHandle->getSubdetectorGeometry(DetId::Hcal, HcalEndcap);
40 
41  iEvent.getByToken(recHitToken_,recHitHandle);
42  for( const auto& erh : *recHitHandle ) {
43  const HcalDetId detid = erh.idFront();
45 
46  auto energy = erh.energy();
47  auto time = erh.time();
48  auto depth = detid.depth();
49 
50  std::shared_ptr<const CaloCellGeometry> thisCell = nullptr;
52  switch(esd) {
53  case HcalBarrel:
54  thisCell = hcalBarrelGeo->getGeometry(detid);
55  layer = PFLayer::HCAL_BARREL1;
56  break;
57 
58  case HcalEndcap:
59  thisCell = hcalEndcapGeo->getGeometry(detid);
60  layer = PFLayer::HCAL_ENDCAP;
61  break;
62  default:
63  break;
64  }
65 
66  // find rechit geometry
67  if(!thisCell) {
68  edm::LogError("PFHBHERecHitCreator")
69  <<"warning detid "<<std::hex<<detid.rawId()<<std::dec<< " "
70  <<detid<<" not found in geometry"<<std::endl;
71  continue;
72  }
73 
74  reco::PFRecHit rh(thisCell, detid.rawId(),layer,
75  energy);
76  rh.setTime(time); //Mike: This we will use later
77  rh.setDepth(depth);
78 
79  bool rcleaned = false;
80  bool keep=true;
81 
82  //Apply Q tests
83  for( const auto& qtest : qualityTests_ ) {
84  if (!qtest->test(rh,erh,rcleaned)) {
85  keep = false;
86 
87  }
88  }
89 
90  if(keep) {
91  out->push_back(std::move(rh));
92  }
93  else if (rcleaned)
94  cleaned->push_back(std::move(rh));
95  }
96  }
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:49
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
const int keep
int depth() const
get the tower depth
Definition: HcalDetId.h:166
Particle flow rechit (rechit + geometry and topology information). See clustering algorithm in PFClus...
Definition: PFRecHit.h:31
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:41
HcalSubdetector
Definition: HcalAssistant.h:31
void beginEvent(const edm::Event &event, const edm::EventSetup &setup)
void setTime(double time)
Definition: PFRecHit.h:73
Layer
layer definition
Definition: PFLayer.h:31
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:71
def move(src, dest)
Definition: eostools.py:511
edm::EDGetTokenT< edm::SortedCollection< HBHERecHit > > recHitToken_

Member Data Documentation

edm::EDGetTokenT<edm::SortedCollection<HBHERecHit> > PFHBHERecHitCreator::recHitToken_
protected

Definition at line 101 of file PFHBHERecHitCreator.h.

Referenced by importRecHits(), and PFHBHERecHitCreator().