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::auto_ptr< reco::PFRecHitCollection > &out, std::auto_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, ForwardSubdetector subdet>
class PFHGCalRecHitCreator< DET, Layer, subdet >

Definition at line 23 of file PFHGCalRecHitCreator.h.

Constructor & Destructor Documentation

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

Member Function Documentation

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

Implements PFRecHitCreatorBase.

Definition at line 33 of file PFHGCalRecHitCreator.h.

References CaloRecHit::detid(), CaloRecHit::energy(), relval_parameters_module::energy, Exception, PFHGCalRecHitCreator< DET, Layer, subdet >::geometryInstance_, edm::EventSetup::get(), edm::Event::getByToken(), HGCalGeometry::getGeometry(), i, keep, LogDebug, PFRecHitCreatorBase::qualityTests_, HI_PhotonSkim_cff::rechits, PFHGCalRecHitCreator< DET, Layer, subdet >::recHitToken_, edm::SortedCollection< T, SORT >::size(), and CaloRecHit::time().

33  {
34 
35  for (unsigned int i=0;i<qualityTests_.size();++i) {
36  qualityTests_.at(i)->beginEvent(iEvent,iSetup);
37  }
38 
40  iEvent.getByToken(recHitToken_,recHitHandle);
41  const HGCRecHitCollection& rechits = *recHitHandle;
42 
44  iSetup.get<IdealGeometryRecord>().get(geometryInstance_,geoHandle);
45  const HGCalGeometry& hgcGeo = *geoHandle;
46 
47  unsigned skipped_rechits = 0;
48  for (unsigned int i=0;i<rechits.size();++i) {
49  const HGCRecHit& hgrh = rechits[i];
50  const DET detid(hgrh.detid());
51 
52  if( subdet != detid.subdet() ) {
53  throw cms::Exception("IncorrectHGCSubdetector")
54  << "subdet expected: " << subdet
55  << " subdet gotten: " << detid.subdet() << std::endl;
56  }
57 
58  double energy = hgrh.energy();
59  double time = hgrh.time();
60 
61  const FlatTrd *thisCell =
62  static_cast<const FlatTrd*>(hgcGeo.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)
int i
Definition: DBlmapReader.cc:9
A base class to handle the particular shape of HGCal volumes.
Definition: FlatTrd.h:19
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
const DetId & detid() const
Definition: CaloRecHit.h:20
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:462
float time() const
Definition: CaloRecHit.h:19
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
size_type size() const
virtual const CaloCellGeometry * getGeometry(const DetId &id) const override
Get the cell geometry of a given detector id. Should return false if not found.

Member Data Documentation

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