test
CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Attributes
PFHGCalRecHitCreator< DET, Layer, subdet > Class Template Reference

#include <PFHGCalRecHitCreator.h>

Inheritance diagram for PFHGCalRecHitCreator< DET, Layer, subdet >:
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)
 
 PFHGCalRecHitCreator (const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
 
- Public Member Functions inherited from PFRecHitCreatorBase
 PFRecHitCreatorBase ()
 
 PFRecHitCreatorBase (const edm::ParameterSet &iConfig, edm::ConsumesCollector &iC)
 

Protected Attributes

std::string geometryInstance_
 
edm::EDGetTokenT
< HGCRecHitCollection
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

template<typename DET, PFLayer::Layer Layer, unsigned subdet>
class PFHGCalRecHitCreator< DET, Layer, subdet >

Definition at line 24 of file PFHGCalRecHitCreator.h.

Constructor & Destructor Documentation

template<typename DET , PFLayer::Layer Layer, unsigned subdet>
PFHGCalRecHitCreator< DET, Layer, subdet >::PFHGCalRecHitCreator ( const edm::ParameterSet iConfig,
edm::ConsumesCollector iC 
)
inline

Member Function Documentation

template<typename DET , PFLayer::Layer Layer, unsigned subdet>
void PFHGCalRecHitCreator< DET, Layer, subdet >::importRecHits ( std::unique_ptr< reco::PFRecHitCollection > &  out,
std::unique_ptr< reco::PFRecHitCollection > &  cleaned,
const edm::Event iEvent,
const edm::EventSetup iSetup 
)
inlinevirtual

Implements PFRecHitCreatorBase.

Definition at line 34 of file PFHGCalRecHitCreator.h.

References CaloRecHit::detid(), CaloRecHit::energy(), relval_parameters_module::energy, Exception, relativeConstraints::geom, edm::EventSetup::get(), edm::Event::getByToken(), ecaldqm::getGeometry(), CaloGeometry::getSubdetectorGeometry(), i, keep, LogDebug, edm::ESHandle< class >::product(), PFRecHitCreatorBase::qualityTests_, HI_PhotonSkim_cff::rechits, PFHGCalRecHitCreator< DET, Layer, subdet >::recHitToken_, edm::SortedCollection< T, SORT >::size(), and CaloRecHit::time().

34  {
35 
36  for (unsigned int i=0;i<qualityTests_.size();++i) {
37  qualityTests_.at(i)->beginEvent(iEvent,iSetup);
38  }
39 
41  iEvent.getByToken(recHitToken_,recHitHandle);
42  const HGCRecHitCollection& rechits = *recHitHandle;
43 
45  iSetup.get<CaloGeometryRecord>().get(geoHandle);
46  const CaloGeometry* geom = geoHandle.product();
47 
48  unsigned skipped_rechits = 0;
49  for (unsigned int i=0;i<rechits.size();++i) {
50  const HGCRecHit& hgrh = rechits[i];
51  const DET detid(hgrh.detid());
52 
53  if( subdet != detid.subdetId() ) {
54  throw cms::Exception("IncorrectHGCSubdetector")
55  << "subdet expected: " << subdet
56  << " subdet gotten: " << detid.subdetId() << std::endl;
57  }
58 
59  double energy = hgrh.energy();
60  double time = hgrh.time();
61 
62  const CaloCellGeometry *thisCell = geom->getSubdetectorGeometry(detid.det(),detid.subdetId())->getGeometry(detid);
63 
64  // find rechit geometry
65  if(!thisCell) {
66  LogDebug("PFHGCalRecHitCreator")
67  <<"warning detid "<<detid.rawId()
68  <<" not found in geometry"<<std::endl;
69  ++skipped_rechits;
70  continue;
71  }
72 
73 
74  reco::PFRecHit rh(thisCell, detid.rawId(),Layer,
75  energy);
76 
77  // rh.setOriginalRecHit(edm::Ref<HGCRecHitCollection>(recHitHandle,i));
78 
79 
80  bool rcleaned = false;
81  bool keep=true;
82 
83  //Apply Q tests
84  for (unsigned int i=0;i<qualityTests_.size();++i) {
85  if (!qualityTests_.at(i)->test(rh,hgrh,rcleaned)) {
86  keep = false;
87  }
88  }
89 
90  if(keep) {
91  rh.setTime(time);
92  out->push_back(rh);
93  }
94  else if (rcleaned)
95  cleaned->push_back(rh);
96  }
97  edm::LogInfo("HGCalRecHitCreator")
98  << "Skipped " << skipped_rechits
99  << " out of " << rechits.size() << " rechits!" << std::endl;
100  edm::LogInfo("HGCalRecHitCreator")
101  << "Created " << out->size() << " PFRecHits!" << std::endl;
102  }
#define LogDebug(id)
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:45
int i
Definition: DBlmapReader.cc:9
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
const DetId & detid() const
Definition: CaloRecHit.h:21
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:457
float time() const
Definition: CaloRecHit.h:19
CaloGeometry const * getGeometry()
SeedingLayerSetsHits::SeedingLayer Layer
Definition: LayerTriplets.h:14
const int keep
Particle flow rechit (rechit + geometry and topology information). See clustering algorithm in PFClus...
Definition: PFRecHit.h:31
float energy() const
Definition: CaloRecHit.h:17
edm::EDGetTokenT< HGCRecHitCollection > recHitToken_
const T & get() const
Definition: EventSetup.h:56
T const * product() const
Definition: ESHandle.h:86
size_type size() const

Member Data Documentation

template<typename DET , PFLayer::Layer Layer, unsigned subdet>
std::string PFHGCalRecHitCreator< DET, Layer, subdet >::geometryInstance_
protected
template<typename DET , PFLayer::Layer Layer, unsigned subdet>
edm::EDGetTokenT<HGCRecHitCollection> PFHGCalRecHitCreator< DET, Layer, subdet >::recHitToken_
protected