CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Attributes | Private Attributes
PFHcalRecHitCreator< Digi, Geometry, Layer, Detector > Class Template Referencefinal

#include <PFHcalRecHitCreator.h>

Inheritance diagram for PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >:
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
 
 PFHcalRecHitCreator (const edm::ParameterSet &iConfig, edm::ConsumesCollector &cc)
 
- Public Member Functions inherited from PFRecHitCreatorBase
virtual void init (const edm::EventSetup &es)
 
 PFRecHitCreatorBase ()
 
 PFRecHitCreatorBase (const edm::ParameterSet &iConfig, edm::ConsumesCollector &cc)
 
virtual ~PFRecHitCreatorBase ()=default
 

Protected Attributes

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

Private Attributes

edm::ESGetToken< CaloGeometry, CaloGeometryRecordgeomToken_
 
edm::ESGetToken< HcalTopology, HcalRecNumberingRecordtopoToken_
 

Additional Inherited Members

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

Detailed Description

template<typename Digi, typename Geometry, PFLayer::Layer Layer, int Detector>
class PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >

Definition at line 22 of file PFHcalRecHitCreator.h.

Constructor & Destructor Documentation

◆ PFHcalRecHitCreator()

template<typename Digi , typename Geometry , PFLayer::Layer Layer, int Detector>
PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >::PFHcalRecHitCreator ( const edm::ParameterSet iConfig,
edm::ConsumesCollector cc 
)
inline

Definition at line 24 of file PFHcalRecHitCreator.h.

25  : PFRecHitCreatorBase(iConfig, cc),
27  geomToken_(cc.esConsumes()),
28  topoToken_(cc.esConsumes()) {}
T getParameter(std::string const &) const
Definition: ParameterSet.h:303
uint32_t cc[maxCellsPerHit]
Definition: gpuFishbone.h:49
edm::EDGetTokenT< edm::SortedCollection< Digi > > recHitToken_
edm::ESGetToken< HcalTopology, HcalRecNumberingRecord > topoToken_
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > geomToken_

Member Function Documentation

◆ importRecHits()

template<typename Digi , typename Geometry , PFLayer::Layer Layer, int Detector>
void PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >::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 30 of file PFHcalRecHitCreator.h.

References PFRecHitCreatorBase::beginEvent(), LEDCalibrationChannels::depth, HcalDetId::depth(), align::Detector, HCALHighEnergyHPDFilter_cfi::energy, PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >::geomToken_, edm::EventSetup::getHandle(), HcalTopology::getMergePositionFlag(), CaloGeometry::getSubdetectorGeometry(), DetId::Hcal, HcalEndcap, HcalOther, HcalTopology::idFront(), iEvent, runTheMatrix::keep, eostools::move(), MillePedeFileConverter_cfg::out, edm::ESHandle< T >::product(), PFRecHitCreatorBase::qualityTests_, DetId::rawId(), PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >::recHitToken_, reco::PFRecHit::setTime(), DetId::subdetId(), protons_cff::time, and PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >::topoToken_.

33  {
34  beginEvent(iEvent, iSetup);
35 
37 
39  edm::ESHandle<HcalTopology> hcalTopology = iSetup.getHandle(topoToken_);
40 
41  // get the hcal geometry and topology
43  const Geometry* hcalGeo = dynamic_cast<const Geometry*>(gTmp);
44  const HcalTopology* theHcalTopology = hcalTopology.product();
45 
46  iEvent.getByToken(recHitToken_, recHitHandle);
47  for (const auto& erh : *recHitHandle) {
48  HcalDetId detid = (HcalDetId)erh.detid();
50 
51  //since hbhe are together kill other detector
52  if (esd != Detector && Detector != HcalOther)
53  continue;
54 
55  if (theHcalTopology->getMergePositionFlag() && esd == HcalEndcap) {
56  detid = theHcalTopology->idFront(detid);
57  }
58 
59  auto energy = erh.energy();
60  auto time = erh.time();
61  auto depth = detid.depth();
62 
63  auto thisCell = hcalGeo->getGeometry(detid);
64 
65  // find rechit geometry
66  if (!thisCell) {
67  edm::LogError("PFHcalRecHitCreator")
68  << "warning detid " << detid.rawId() << " not found in geometry" << std::endl;
69  continue;
70  }
71 
72  reco::PFRecHit rh(thisCell, detid.rawId(), Layer, energy);
73  rh.setTime(time); //Mike: This we will use later
74  rh.setDepth(depth);
75 
76  bool rcleaned = false;
77  bool keep = true;
78 
79  //Apply Q tests
80  for (const auto& qtest : qualityTests_) {
81  if (!qtest->test(rh, erh, rcleaned)) {
82  keep = false;
83  }
84  }
85 
86  if (keep) {
87  out->push_back(std::move(rh));
88  } else if (rcleaned)
89  cleaned->push_back(std::move(rh));
90  }
91  }
bool getMergePositionFlag() const
Definition: HcalTopology.h:167
std::vector< std::unique_ptr< PFRecHitQTestBase > > qualityTests_
Log< level::Error, false > LogError
SeedingLayerSetsHits::SeedingLayer Layer
Definition: LayerTriplets.h:14
int iEvent
Definition: GenABIO.cc:224
T const * product() const
Definition: ESHandle.h:86
Class Geometry Contains vector for fit parameters (mean, sigma, etc.) obtained from multiple IOVs See...
Particle flow rechit (rechit + geometry and topology information). See clustering algorithm in PFClus...
Definition: PFRecHit.h:31
HcalDetId idFront(const HcalDetId &id) const
Definition: HcalTopology.h:170
HcalSubdetector
Definition: HcalAssistant.h:31
edm::EDGetTokenT< edm::SortedCollection< Digi > > recHitToken_
void beginEvent(const edm::Event &event, const edm::EventSetup &setup)
constexpr int subdetId() const
get the contents of the subdetector field (not cast into any detector&#39;s numbering enum) ...
Definition: DetId.h:48
void setTime(double time)
Definition: PFRecHit.h:73
ESHandle< T > getHandle(const ESGetToken< T, R > &iToken) const
Definition: EventSetup.h:130
edm::ESGetToken< HcalTopology, HcalRecNumberingRecord > topoToken_
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:57
edm::ESGetToken< CaloGeometry, CaloGeometryRecord > geomToken_
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
Definition: CaloGeometry.cc:34
def move(src, dest)
Definition: eostools.py:511
constexpr int depth() const
get the tower depth
Definition: HcalDetId.h:164

Member Data Documentation

◆ geomToken_

template<typename Digi , typename Geometry , PFLayer::Layer Layer, int Detector>
edm::ESGetToken<CaloGeometry, CaloGeometryRecord> PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >::geomToken_
private

◆ hoDepth_

template<typename Digi , typename Geometry , PFLayer::Layer Layer, int Detector>
int PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >::hoDepth_
protected

Definition at line 95 of file PFHcalRecHitCreator.h.

◆ recHitToken_

template<typename Digi , typename Geometry , PFLayer::Layer Layer, int Detector>
edm::EDGetTokenT<edm::SortedCollection<Digi> > PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >::recHitToken_
protected

◆ topoToken_

template<typename Digi , typename Geometry , PFLayer::Layer Layer, int Detector>
edm::ESGetToken<HcalTopology, HcalRecNumberingRecord> PFHcalRecHitCreator< Digi, Geometry, Layer, Detector >::topoToken_
private