168 int nPfCand = pfcandidates->size();
171 copy->reserve(nPfCand);
173 newToOld.reserve(nPfCand);
175 LogDebug(
"PFCandidateRecalibrator") <<
"NEW EV:";
185 if(
pf.particleId() == reco::PFCandidate::ParticleType::h0 &&
187 absEta > 1.4 && absEta < 3.)
197 discarded->push_back(
pf);
199 badToOld.push_back(i);
206 newToOld.push_back(i);
210 else if( (
pf.particleId() == reco::PFCandidate::ParticleType::h_HF ||
pf.particleId() == reco::PFCandidate::ParticleType::egamma_HF) &&
215 GlobalPoint ecalGPoint(ecalPoint.X(),ecalPoint.Y(),ecalPoint.Z());
220 HcalDetId hDetId(closestDetId.subdet(),closestDetId.ieta(),closestDetId.iphi(),1);
223 float longE =
pf.rawEcalEnergy() +
pf.rawHcalEnergy()/2.;
224 float shortE =
pf.rawHcalEnergy()/2.;
226 float ecalEnergy =
pf.rawEcalEnergy();
227 float hcalEnergy =
pf.rawHcalEnergy();
228 float totEnergy = ecalEnergy + hcalEnergy;
229 float totEnergyOrig = totEnergy;
235 if ( hDetId.ieta() == badIt.ieta &&
236 hDetId.iphi() == badIt.iphi )
238 LogDebug(
"PFCandidateRecalibrator") <<
"==> orig en (tot,H,E): " 239 <<
pf.energy() <<
" " <<
pf.rawHcalEnergy() <<
" " <<
pf.rawEcalEnergy();
242 longE *= badIt.ratio;
243 ecalEnergy = ((longE - shortE) > 0.) ? (longE - shortE) : 0.;
244 totEnergy = ecalEnergy + hcalEnergy;
248 shortE *= badIt.ratio;
249 hcalEnergy = 2*shortE;
250 ecalEnergy = ((longE - shortE) > 0.) ? (longE - shortE) : 0.;
251 totEnergy = ecalEnergy + hcalEnergy;
254 if((
pf.particleId() == reco::PFCandidate::ParticleType::h_HF && shortE <
shortFibreThr_) ||
255 (
pf.particleId() == reco::PFCandidate::ParticleType::egamma_HF && longE <
longFibreThr_))
258 LogDebug(
"PFCandidateRecalibrator") <<
"====> ieta,iphi,depth: " 259 << badIt.ieta <<
" " << badIt.iphi <<
" " << badIt.depth <<
" corr: " << badIt.ratio;
260 LogDebug(
"PFCandidateRecalibrator") <<
"====> recal en (tot,H,E): " 261 << totEnergy <<
" " << hcalEnergy <<
" " << ecalEnergy;
268 discarded->push_back(
pf);
270 badToOld.push_back(i);
272 LogDebug(
"PFCandidateRecalibrator") <<
"==> KILLED ";
278 newToOld.push_back(i);
280 copy->back().setHcalEnergy(hcalEnergy, hcalEnergy);
281 copy->back().setEcalEnergy(ecalEnergy, ecalEnergy);
283 float scalingFactor = totEnergy/totEnergyOrig;
285 copy->back().setP4( recalibP4 );
287 LogDebug(
"PFCandidateRecalibrator") <<
"====> stored en (tot,H,E): " 288 <<
copy->back().energy() <<
" " <<
copy->back().hcalEnergy() <<
" " <<
copy->back().ecalEnergy();
295 newToOld.push_back(i);
302 newToOld.push_back(i);
312 std::vector<reco::PFCandidateRef> refs; refs.reserve(nPfCand);
322 filler.insert(pfcandidates, refs.begin(), refs.end());
325 for (
int i : newToOld) {
328 filler.insert(newpf, refs.begin(), refs.end());
331 for (
int i : badToOld) {
334 filler.insert(badpf, refs.begin(), refs.end());
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
bool getByToken(EDGetToken token, Handle< PROD > &result) const
std::vector< HEChannel > badChHE_
ROOT::Math::PositionVector3D< ROOT::Math::Cartesian3D< float > > XYZPointF
point in space with cartesian internal representation
XYZTLorentzVectorD XYZTLorentzVector
Lorentz vector with cylindrical internal representation using pseudorapidity.
Abs< T >::type abs(const T &t)
std::vector< reco::PFCandidate > PFCandidateCollection
collection of PFCandidates
std::vector< HFChannel > badChHF_
edm::EDGetTokenT< reco::PFCandidateCollection > pfcandidates_
T1 deltaR2(T1 eta1, T2 phi1, T3 eta2, T4 phi2)
Particle reconstructed by the particle flow algorithm.
T const * product() const
DetId getClosestCell(const GlobalPoint &r) const override