CMS 3D CMS Logo

List of all members | Classes | Public Member Functions | Protected Attributes
PFHFRecHitCreator Class Referencefinal

#include <PFHFRecHitCreator.h>

Inheritance diagram for PFHFRecHitCreator:
PFRecHitCreatorBase

Classes

class  DetIDSorter
 

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
 
 PFHFRecHitCreator (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

double EM_Depth_
 
double HAD_Depth_
 
double HFCalib_
 
double longFibre_Cut
 
double longFibre_Fraction
 
edm::EDGetTokenT< edm::SortedCollection< HFRecHit > > recHitToken_
 
double shortFibre_Cut
 
double shortFibre_Fraction
 
double thresh_HF_
 
- 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 22 of file PFHFRecHitCreator.h.

Constructor & Destructor Documentation

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

Definition at line 25 of file PFHFRecHitCreator.h.

References edm::ConsumesCollector::consumes(), EM_Depth_, edm::ParameterSet::getParameter(), HAD_Depth_, HFCalib_, longFibre_Cut, longFibre_Fraction, recHitToken_, shortFibre_Cut, shortFibre_Fraction, and thresh_HF_.

25  :
26  PFRecHitCreatorBase(iConfig,iC)
27  {
29  EM_Depth_ = iConfig.getParameter<double>("EMDepthCorrection");
30  HAD_Depth_ = iConfig.getParameter<double>("HADDepthCorrection");
31  shortFibre_Cut = iConfig.getParameter<double>("ShortFibre_Cut");
32  longFibre_Fraction = iConfig.getParameter<double>("LongFibre_Fraction");
33  longFibre_Cut = iConfig.getParameter<double>("LongFibre_Cut");
34  shortFibre_Fraction = iConfig.getParameter<double>("ShortFibre_Fraction");
35  thresh_HF_ = iConfig.getParameter<double>("thresh_HF");
36  HFCalib_ = iConfig.getParameter<double>("HFCalib29");
37 
38  }
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
T getParameter(std::string const &) const
edm::EDGetTokenT< edm::SortedCollection< HFRecHit > > recHitToken_

Member Function Documentation

void PFHFRecHitCreator::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 42 of file PFHFRecHitCreator.h.

References a, funct::abs(), b, PFRecHitCreatorBase::beginEvent(), egammaForCoreTracking_cff::depth, HcalDetId::depth(), edm::EventSetup::get(), edm::Event::getByToken(), CaloSubdetectorGeometry::getGeometry(), CaloGeometry::getSubdetectorGeometry(), DetId::Hcal, HcalForward, PFLayer::HF_EM, PFLayer::HF_HAD, HFCalib_, HcalDetId::ieta(), HcalDetId::iphi(), keep, longFibre_Cut, longFibre_Fraction, pfDeepBoostedJetPreprocessParams_cfi::lower_bound, eostools::move(), PFRecHitCreatorBase::qualityTests_, DetId::rawId(), recHitToken_, reco::PFRecHit::setEnergy(), reco::PFRecHit::setTime(), shortFibre_Cut, shortFibre_Fraction, jetUpdater_cfi::sort, MCScenario_CRAFT1_22X::sorter(), thresh_HF_, and protons_cff::time.

42  {
43 
44 
46 
47  beginEvent(iEvent,iSetup);
48 
50 
52  iSetup.get<CaloGeometryRecord>().get(geoHandle);
53 
54  // get the ecal geometry
56 
57  iEvent.getByToken(recHitToken_,recHitHandle);
58  for( const auto& erh : *recHitHandle ) {
59  const HcalDetId& detid = (HcalDetId)erh.detid();
60  auto depth = detid.depth();
61 
62  // ATTN: skip dual anode in HF for now (should be fixed in upstream changes)
63  if( depth > 2 ) continue;
64 
65  auto energy = erh.energy();
66  auto time = erh.time();
67 
68  std::shared_ptr<const CaloCellGeometry> thisCell= hcalGeo->getGeometry(detid);
69  auto zp = dynamic_cast<IdealZPrism const*>(thisCell.get());
70  assert(zp);
71  thisCell = zp->forPF();
72 
73  // find rechit geometry
74  if(!thisCell) {
75  edm::LogError("PFHFRecHitCreator")
76  <<"warning detid "<<detid.rawId()
77  <<" not found in geometry"<<std::endl;
78  continue;
79  }
80 
82 
83 
84  reco::PFRecHit rh(thisCell, detid.rawId(),layer,energy);
85  rh.setTime(time);
86  rh.setDepth(depth);
87 
88  bool rcleaned = false;
89  bool keep=true;
90 
91  //Apply Q tests
92  for( const auto& qtest : qualityTests_ ) {
93  if (!qtest->test(rh,erh,rcleaned)) {
94  keep = false;
95 
96  }
97  }
98 
99  if(keep) {
100  tmpOut.push_back(std::move(rh));
101  }
102  else if (rcleaned)
103  cleaned->push_back(std::move(rh));
104  }
105  //Sort by DetID the collection
106  DetIDSorter sorter;
107  if (!tmpOut.empty())
108  std::sort(tmpOut.begin(),tmpOut.end(),sorter);
109 
110 
112 
113  for (auto& hit : tmpOut) {
114  reco::PFRecHit newHit = hit;
115  const HcalDetId& detid = (HcalDetId)hit.detId();
116  if (detid.depth()==1) {
117  double lONG=hit.energy();
118  //find the short hit
119  HcalDetId shortID (HcalForward, detid.ieta(), detid.iphi(), 2);
120  auto found_hit = std::lower_bound(tmpOut.begin(),tmpOut.end(),
121  shortID,
122  [](const reco::PFRecHit& a,
123  HcalDetId b){
124  return a.detId() < b.rawId();
125  });
126  if( found_hit != tmpOut.end() && found_hit->detId() == shortID.rawId() ) {
127  double sHORT = found_hit->energy();
128  //Ask for fraction
129  double energy = lONG-sHORT;
130 
131  if (abs(detid.ieta())<=32)
132  energy*=HFCalib_;
133  newHit.setEnergy(energy);
134  if (!( lONG > longFibre_Cut &&
135  ( sHORT/lONG < shortFibre_Fraction)))
136  if (energy>thresh_HF_)
137  out->push_back(newHit);
138  }
139  else
140  {
141  //make only long hit
142  double energy = lONG;
143  if (abs(detid.ieta())<=32)
144  energy*=HFCalib_;
145  newHit.setEnergy(energy);
146 
147  if (energy>thresh_HF_)
148  out->push_back(newHit);
149 
150  }
151 
152  }
153  else {
154  double sHORT=hit.energy();
155  HcalDetId longID (HcalForward, detid.ieta(), detid.iphi(), 1);
156  auto found_hit = std::lower_bound(tmpOut.begin(),tmpOut.end(),
157  longID,
158  [](const reco::PFRecHit& a,
159  HcalDetId b){
160  return a.detId() < b.rawId();
161  });
162  double energy = 2*sHORT;
163  if( found_hit != tmpOut.end() && found_hit->detId() == longID.rawId() ) {
164  double lONG = found_hit->energy();
165  //Ask for fraction
166 
167  //If in this case lONG-sHORT<0 add the energy to the sHORT
168  if ((lONG-sHORT)<thresh_HF_)
169  energy = lONG+sHORT;
170 
171  if (abs(detid.ieta())<=32)
172  energy*=HFCalib_;
173 
174  newHit.setEnergy(energy);
175  if (!( sHORT > shortFibre_Cut &&
176  ( lONG/sHORT < longFibre_Fraction)))
177  if (energy>thresh_HF_)
178  out->push_back(newHit);
179 
180  }
181  else {
182  //only short hit!
183  if (abs(detid.ieta())<=32)
184  energy*=HFCalib_;
185  newHit.setEnergy(energy);
186  if (energy>thresh_HF_)
187  out->push_back(newHit);
188  }
189  }
190 
191 
192  }
193 
194  }
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
edm::EDGetTokenT< edm::SortedCollection< HFRecHit > > recHitToken_
constexpr uint32_t rawId() const
get the raw id
Definition: DetId.h:50
std::vector< PFRecHit > PFRecHitCollection
collection of PFRecHit objects
Definition: PFRecHitFwd.h:9
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
int ieta() const
get the cell ieta
Definition: HcalDetId.h:159
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
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
int iphi() const
get the cell iphi
Definition: HcalDetId.h:161
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.
double b
Definition: hdecay.h:120
double a
Definition: hdecay.h:121
void setEnergy(float energy)
Definition: PFRecHit.h:69
T get() const
Definition: EventSetup.h:71
def move(src, dest)
Definition: eostools.py:511

Member Data Documentation

double PFHFRecHitCreator::EM_Depth_
protected

Definition at line 200 of file PFHFRecHitCreator.h.

Referenced by PFHFRecHitCreator().

double PFHFRecHitCreator::HAD_Depth_
protected

Definition at line 201 of file PFHFRecHitCreator.h.

Referenced by PFHFRecHitCreator().

double PFHFRecHitCreator::HFCalib_
protected

Definition at line 210 of file PFHFRecHitCreator.h.

Referenced by importRecHits(), and PFHFRecHitCreator().

double PFHFRecHitCreator::longFibre_Cut
protected

Definition at line 207 of file PFHFRecHitCreator.h.

Referenced by importRecHits(), and PFHFRecHitCreator().

double PFHFRecHitCreator::longFibre_Fraction
protected

Definition at line 204 of file PFHFRecHitCreator.h.

Referenced by importRecHits(), and PFHFRecHitCreator().

edm::EDGetTokenT<edm::SortedCollection<HFRecHit> > PFHFRecHitCreator::recHitToken_
protected

Definition at line 199 of file PFHFRecHitCreator.h.

Referenced by importRecHits(), and PFHFRecHitCreator().

double PFHFRecHitCreator::shortFibre_Cut
protected

Definition at line 203 of file PFHFRecHitCreator.h.

Referenced by importRecHits(), and PFHFRecHitCreator().

double PFHFRecHitCreator::shortFibre_Fraction
protected

Definition at line 208 of file PFHFRecHitCreator.h.

Referenced by importRecHits(), and PFHFRecHitCreator().

double PFHFRecHitCreator::thresh_HF_
protected

Definition at line 209 of file PFHFRecHitCreator.h.

Referenced by importRecHits(), and PFHFRecHitCreator().