44 #include <Math/Point3D.h>
51 using namespace reco ;
108 : inputCfg(inputConfig),
109 strategyCfg(strategyConfig),
111 cutsCfgPflow(cutsConfigPflow),
113 recHitsCfg(recHitsConfig),
116 superClusterErrorFunction(superClusterErrorFunc),
117 crackCorrectionFunction(crackCorrectionFunc),
126 delete hcalHelperPflow ;
127 delete sElectronMVAEstimator;
160 : cacheIDGeom(0), cacheIDTopo(0), cacheIDTDGeom(0), cacheIDMagField(0),
167 delete constraintAtVtx ;
168 delete mtsTransform ;
187 void retreiveOriginalTrackCollections
225 :
event(0), beamspot(0),
226 originalCtfTrackCollectionRetreived(
false),
227 originalGsfTrackCollectionRetreived(
false),
228 tkIsolation03(0), tkIsolation04(0),
229 hadDepth1Isolation03(0), hadDepth1Isolation04(0),
230 hadDepth2Isolation03(0), hadDepth2Isolation04(0),
231 ecalBarrelHitsMeta(0), ecalEndcapHitsMeta(0),
232 ecalBarrelIsol03(0), ecalBarrelIsol04(0),
233 ecalEndcapIsol03(0), ecalEndcapIsol04(0)
240 delete tkIsolation03 ;
241 delete tkIsolation04 ;
242 delete hadDepth1Isolation03 ;
243 delete hadDepth1Isolation04 ;
244 delete hadDepth2Isolation03 ;
245 delete hadDepth2Isolation04 ;
246 delete ecalBarrelHitsMeta ;
247 delete ecalEndcapHitsMeta ;
248 delete ecalBarrelIsol03 ;
249 delete ecalBarrelIsol04 ;
250 delete ecalEndcapIsol03 ;
251 delete ecalEndcapIsol04 ;
253 GsfElectronPtrCollection::const_iterator it ;
262 if ((!originalCtfTrackCollectionRetreived)&&(ctfTrack.
isNonnull()))
264 event->get(ctfTrack.
id(),originalCtfTracks) ;
265 originalCtfTrackCollectionRetreived =
true ;
267 if ((!originalGsfTrackCollectionRetreived)&&(gsfTrack.
isNonnull()))
269 event->get(gsfTrack.
id(),originalGsfTracks) ;
270 originalGsfTrackCollectionRetreived =
true ;
322 gsfTrackRef(coreRef->gsfTrack()),
323 superClusterRef(coreRef->superCluster()),
324 ctfTrackRef(coreRef->ctfTrack()), shFracInnerHits(coreRef->ctfGsfOverlap()),
333 if (!ctfTrackRef.isNull())
return ;
337 shFracInnerHits = 0 ;
341 const HitPattern & gsfHitPattern = gsfTrackRef->hitPattern() ;
344 TrackCollection::const_iterator ctfTkIter ;
345 for ( ctfTkIter = ctfTrackCollection->begin() , counter = 0 ;
346 ctfTkIter != ctfTrackCollection->end() ; ctfTkIter++, counter++ )
349 double dEta = gsfTrackRef->eta() - ctfTkIter->eta() ;
350 double dPhi = gsfTrackRef->phi() - ctfTkIter->phi() ;
351 double pi = acos(-1.);
355 if (
sqrt(dEta*dEta + dPhi*dPhi) > 0.3) continue ;
357 unsigned int shared = 0 ;
358 int gsfHitCounter = 0 ;
359 int numGsfInnerHits = 0 ;
360 int numCtfInnerHits = 0 ;
363 const HitPattern & ctfHitPattern = ctfTkIter->hitPattern() ;
366 for ( elHitsIt = gsfTrackRef->recHitsBegin() ;
367 elHitsIt != gsfTrackRef->recHitsEnd() ;
368 elHitsIt++, gsfHitCounter++ )
370 if (!((**elHitsIt).isValid()))
374 uint32_t gsfHit = gsfHitPattern.
getHitPattern(gsfHitCounter) ;
382 int ctfHitsCounter = 0 ;
383 numCtfInnerHits = 0 ;
385 for ( ctfHitsIt = ctfTkIter->recHitsBegin() ;
386 ctfHitsIt != ctfTkIter->recHitsEnd() ;
387 ctfHitsIt++, ctfHitsCounter++ )
389 if(!((**ctfHitsIt).isValid()))
392 uint32_t ctfHit = ctfHitPattern.
getHitPattern(ctfHitsCounter);
410 if ((numGsfInnerHits==0)||(numCtfInnerHits==0))
413 if ( static_cast<float>(shared)/
min(numGsfInnerHits,numCtfInnerHits) > shFracInnerHits )
415 shFracInnerHits =
static_cast<float>(shared)/
min(numGsfInnerHits, numCtfInnerHits);
416 ctfTrackRef =
TrackRef(currentCtfTracks,counter);
436 int chargeGsf = gsfTrackRef->charge() ;
438 info.
isGsfCtfConsistent = (ctfTrackRef.isNonnull()&&((chargeGsf*ctfTrackRef->charge())>0)) ;
445 { charge = ctfTrackRef->charge() ; }
454 float dphimin = 1.e30 ;
455 for (
CaloCluster_iterator bc=superClusterRef->clustersBegin(); bc!=superClusterRef->clustersEnd(); bc++)
457 GlobalPoint posclu((*bc)->position().x(),(*bc)->position().y(),(*bc)->position().z()) ;
459 if (!tempTSOS.isValid()) tempTSOS=outTSOS ;
477 if (!innTSOS.isValid())
return false;
484 if (!vtxTSOS.isValid()) vtxTSOS=innTSOS;
488 if (!outTSOS.isValid())
return false;
492 GlobalPoint(superClusterRef->seed()->position().x(),
493 superClusterRef->seed()->position().y(),
494 superClusterRef->seed()->position().z()));
495 if (!seedTSOS.isValid()) seedTSOS=outTSOS;
499 if (!sclTSOS.isValid()) sclTSOS=outTSOS;
526 double scale = superClusterRef->energy()/vtxMom.mag() ;
529 superClusterRef->energy() ) ;
537 int detector = seedXtalId.
subdetId() ;
542 std::vector<int> recHitFlagsToBeExcluded ;
543 std::vector<int> recHitSeverityToBeExcluded ;
604 :
generalData_(
new GeneralData(inputCfg,strategyCfg,cutsCfg,cutsCfgPflow,hcalCfg,hcalCfgPflow,isoCfg,recHitsCfg,superClusterErrorFunction,crackCorrectionFunction,mvaCfg,regCfg)),
620 bool updateField(
false);
627 bool updateGeometry(
false);
629 updateGeometry =
true;
634 if ( updateField || updateGeometry ) {
676 GsfElectronPtrCollection::const_iterator it ;
681 { outEle.push_back(**it) ; }
687 {
throw cms::Exception(
"GsfElectronAlgo|InternalError")<<
"unexpected event data" ; }
715 float extRadiusSmall=0.3, extRadiusLarge=0.4 ;
721 float egHcalIsoConeSizeOutSmall=0.3, egHcalIsoConeSizeOutLarge=0.4;
723 int egHcalDepth1=1, egHcalDepth2=2;
760 std::vector<edm::InputTag> inputTagIsoVals;
768 for (
size_t j = 0;
j<inputTagIsoVals.size(); ++
j) {
775 inputTagIsoVals.clear();
782 for (
size_t j = 0;
j<inputTagIsoVals.size(); ++
j) {
791 {
throw cms::Exception(
"GsfElectronAlgo|InternalError")<<
"lacking event data" ; }
798 LogTrace(
"GsfElectronAlgo") <<
"========== " << title <<
" ==========";
801 GsfElectronPtrCollection::const_iterator it ;
804 LogTrace(
"GsfElectronAlgo") <<
"Electron with charge, pt, eta, phi: " << (*it)->charge() <<
" , "
805 << (*it)->pt() <<
" , " << (*it)->eta() <<
" , " << (*it)->phi();
807 LogTrace(
"GsfElectronAlgo") <<
"=================================================";
813 {
throw cms::Exception(
"GsfElectronAlgo|InternalError")<<
"unexpected electron data" ; }
816 for (
unsigned int i=0 ;
i<coreCollection->size() ; ++
i )
820 bool coreFound =
false ;
821 GsfElectronPtrCollection::const_iterator itrEle ;
827 if ((*itrEle)->core()==coreRef)
833 if (coreFound) continue ;
836 if (coreRef->superCluster().
isNull())
continue ;
857 GsfElectronCollection::const_iterator oldElectron ;
859 ( oldElectron = oldElectrons->begin() ;
860 oldElectron != oldElectrons->end() ;
864 const GsfTrackRef oldElectronGsfTrackRef = oldCoreRef->gsfTrack() ;
866 for ( icore=0 ; icore<newCores->size() ; ++icore )
868 if (oldElectronGsfTrackRef==(*newCores)[icore].gsfTrack())
883 GsfElectronCollection::const_iterator pfElectron, edElectron ;
884 unsigned int edIndex, pfIndex ;
886 GsfElectronPtrCollection::iterator el ;
907 ( pfIndex = 0, pfElectron = pfElectrons->begin() ; pfElectron != pfElectrons->end() ; pfIndex++, pfElectron++ )
909 if (pfElectron->gsfTrack()==(*el)->gsfTrack())
913 edm::LogWarning(
"GsfElectronProducer")<<
"associated pfGsfElectron already found" ;
928 (*el)->setPfIsolationVariables(isoVariables);
932 (*el)->setMvaInput(pfElectron->mvaInput()) ;
933 (*el)->setMvaOutput(pfElectron->mvaOutput()) ;
934 if ((*el)->ecalDrivenSeed())
935 { (*el)->setP4(GsfElectron::P4_PFLOW_COMBINATION,pfElectron->p4(GsfElectron::P4_PFLOW_COMBINATION),pfElectron->p4Error(GsfElectron::P4_PFLOW_COMBINATION),
false) ; }
937 { (*el)->setP4(GsfElectron::P4_PFLOW_COMBINATION,pfElectron->p4(GsfElectron::P4_PFLOW_COMBINATION),pfElectron->p4Error(GsfElectron::P4_PFLOW_COMBINATION),
true) ; }
938 double noCutMin = -999999999. ;
939 if ((*el)->mva()<noCutMin) {
throw cms::Exception(
"GsfElectronAlgo|UnexpectedMvaValue")<<
"unexpected MVA value: "<<(*el)->mva() ; }
948 edIndex = 0, edElectron = edElectrons->begin() ;
949 while ((found ==
false)&&(edElectron != edElectrons->end()))
951 if (edElectron->gsfTrack()==(*el)->gsfTrack())
964 (*el)->setPfIsolationVariables(isoVariables);
976 if (!((*el)->parentSuperCluster().isNull()))
980 (*el)->setPfShowerShape(pflowShowerShape) ;
982 else if ((*el)->passingPflowPreselection())
983 {
edm::LogError(
"GsfElectronCoreProducer")<<
"Preselected tracker driven GsfTrack with no associated pflow SuperCluster." ; }
990 if (sc->clustersSize()>1)
993 (*el)->setPfSuperClusterFbrem((sc->energy()-(*first)->energy())/sc->energy()) ;
996 { (*el)->setPfSuperClusterFbrem(0.) ; }
1012 return passmva && passCutBased;
1017 return passCutBased || passPF || passmva;
1021 return passCutBased || passPF;
1033 LogTrace(
"GsfElectronAlgo")<<
"========== removed not preselected "<<ei<<
"/"<<emax<<
"==========" ;
1048 bool eg = ele->
core()->ecalDrivenSeed() ;
1049 bool pf = ele->
core()->trackerDrivenSeed() && !ele->
core()->ecalDrivenSeed() ;
1051 if (eg&&pf) {
throw cms::Exception(
"GsfElectronAlgo|BothEcalAndPureTrackerDriven")<<
"An electron cannot be both egamma and purely pflow" ; }
1052 if ((!eg)&&(!pf)) {
throw cms::Exception(
"GsfElectronAlgo|NeitherEcalNorPureTrackerDriven")<<
"An electron cannot be neither egamma nor purely pflow" ; }
1058 double etValue = ele->
superCluster()->energy()/cosh(etaValue) ;
1059 LogTrace(
"GsfElectronAlgo") <<
"Et : " << etValue ;
1062 LogTrace(
"GsfElectronAlgo") <<
"Et criteria are satisfied";
1066 LogTrace(
"GsfElectronAlgo") <<
"E/p : " << eopValue ;
1071 LogTrace(
"GsfElectronAlgo") <<
"E/p criteria are satisfied";
1078 bool HoEveto =
false ;
1082 LogTrace(
"GsfElectronAlgo") <<
"H/E criteria are satisfied";
1086 LogTrace(
"GsfElectronAlgo") <<
"delta eta : " << deta ;
1089 LogTrace(
"GsfElectronAlgo") <<
"Delta eta criteria are satisfied";
1093 LogTrace(
"GsfElectronAlgo") <<
"delta phi : " << dphi;
1096 LogTrace(
"GsfElectronAlgo") <<
"Delta phi criteria are satisfied";
1102 LogTrace(
"GsfElectronAlgo") <<
"Sigma ieta ieta criteria are satisfied";
1108 LogTrace(
"GsfElectronAlgo") <<
"Fiducial flags criteria are satisfied";
1116 {
throw cms::Exception(
"GsfElectronAlgo|NotElectronSeed")<<
"The GsfTrack seed is not an ElectronSeed ?!" ; }
1118 {
if (elseed->subDet2()==6)
return ; }
1123 LogTrace(
"GsfElectronAlgo") <<
"TIP criterion is satisfied" ;
1125 LogTrace(
"GsfElectronAlgo") <<
"All cut based criteria are satisfied" ;
1133 if (ele->
core()->ecalDrivenSeed())
1139 {
LogTrace(
"GsfElectronAlgo") <<
"Main mva criterion is satisfied" ; }
1162 GsfElectronPtrCollection::iterator el ;
1168 std::map<reco::GsfTrackRef,reco::GsfElectron::MvaInput>::const_iterator itcheck=mvaInputs.find((*el)->gsfTrack());
1169 (*el)->setMvaInput(itcheck->second);
1175 GsfElectronPtrCollection::iterator el ;
1184 mvaOutput.
mva = mvaValue ;
1185 (*el)->setMvaOutput(mvaOutput);
1188 std::map<reco::GsfTrackRef,reco::GsfElectron::MvaOutput>::const_iterator itcheck=mvaOutputs.find((*el)->gsfTrack());
1189 (*el)->setMvaOutput(itcheck->second);
1277 int detector = seedXtalId.
subdetId() ;
1308 {
throw cms::Exception(
"GsfElectronAlgo|UnknownXtalRegion")<<
"createElectron(): do not know if it is a barrel or endcap seed cluster !!!!" ; }
1336 ConversionInfo conversionInfo = conversionFinder.getConversionInfo
1340 conversionVars.
flags = conversionInfo.
flag() ;
1341 conversionVars.
dist = conversionInfo.
dist() ;
1342 conversionVars.
dcot = conversionInfo.
dcot() ;
1344 if ((conversionVars.
flags==0)
or(conversionVars.
flags==1))
1346 else if ((conversionVars.
flags==2)
or(conversionVars.
flags==3))
1357 tcMatching, tkExtra, ctfInfo,
1358 fiducialFlags,showerShape,
1362 ele->
setP4(GsfElectron::P4_FROM_SUPER_CLUSTER,momentum,0,
true) ;
1376 if (sc->clustersSize()>1)
1401 if (ele->
core()->ecalDrivenSeed())
1417 if (ele->
core()->ecalDrivenSeed())
1454 LogTrace(
"GsfElectronAlgo")<<
"Constructed new electron with energy "<< ele->
p4().e() ;
1469 GsfElectronPtrCollection::iterator
e1,
e2 ;
1483 (*e1)->clearAmbiguousGsfTracks() ;
1484 (*e1)->setAmbiguous(
false) ;
1497 GsfPFRecTrackCollection::const_iterator gsfPfRecTrack ;
1498 for ( gsfPfRecTrack=gsfPfRecTrackCollection->begin() ;
1499 gsfPfRecTrack!=gsfPfRecTrackCollection->end() ;
1502 if (gsfPfRecTrack->gsfTrackRef()==(*e1)->gsfTrack())
1506 edm::LogWarning(
"GsfElectronAlgo")<<
"associated gsfPfRecTrack already found" ;
1511 const std::vector<reco::GsfPFRecTrackRef> & duplicates(gsfPfRecTrack->convBremGsfPFRecTrackRef()) ;
1512 std::vector<reco::GsfPFRecTrackRef>::const_iterator duplicate ;
1513 for ( duplicate = duplicates.begin() ; duplicate != duplicates.end() ; duplicate ++ )
1514 { (*e1)->addAmbiguousGsfTrack((*duplicate)->gsfTrackRef()) ; }
1528 if ((*e1)->ambiguous())
continue ;
1529 if ( ignoreNotPreselected && !
isPreselected(*e1) )
continue ;
1534 <<
"Blessing electron with E/P " << (*e1)->eSuperClusterOverP()
1535 <<
", cluster " << scRef1.
get()
1536 <<
" & track " << (*e1)->gsfTrack().get() ;
1543 if ((*e2)->ambiguous())
continue ;
1544 if ( ignoreNotPreselected && !
isPreselected(*e2) )
continue ;
1550 bool sameCluster =
false ;
1552 { sameCluster = (scRef1==scRef2) ; }
1570 <<
"Discarding electron with E/P " << (*e2)->eSuperClusterOverP()
1571 <<
", cluster " << scRef2.
get()
1572 <<
" and track " << (*e2)->gsfTrack().get() ;
1573 (*e1)->addAmbiguousGsfTrack((*e2)->gsfTrack()) ;
1574 (*e2)->setAmbiguous(
true) ;
1576 else if ((*e1)->gsfTrack()==(*e2)->gsfTrack())
1579 <<
"Forgetting electron with E/P " << (*e2)->eSuperClusterOverP()
1580 <<
", cluster " << scRef2.
get()
1581 <<
" and track " << (*e2)->gsfTrack().get() ;
1582 (*e2)->setAmbiguous(
true) ;
1595 LogTrace(
"GsfElectronAlgo")<<
"========== remove ambiguous "<<ei<<
"/"<<emax<<
"==========" ;
1596 if ((*eitr)->ambiguous())
TrajectoryStateOnSurface constrainAtBeamSpot(const reco::GsfTrack &, const reco::BeamSpot &) const
(multi)TSOS after including the beamspot
CaloClusterPtr electronCluster() const
ElectronHcalHelper * hcalHelperPflow
edm::Handle< reco::TrackCollection > originalCtfTracks
T getParameter(std::string const &) const
unsigned long long cacheIdentifier() const
edm::Handle< reco::ElectronSeedCollection > seeds
const MultiTrajectoryStateMode * mtsMode
bool isPreselected(reco::GsfElectron *ele)
const math::XYZPoint & position() const
cluster centroid position
void applyCombinationRegression(reco::GsfElectron &ele) const
void setTrackFbrem(float fbrem)
edm::Handle< edm::ValueMap< float > > pfMva
void setP4(P4Kind kind, const LorentzVector &p4, float p4Error, bool setCandidate)
GeneralData * generalData_
const CutsConfiguration cutsCfgPflow
static bool isNextToEtaBoundary(EBDetId id)
EgammaTowerIsolation * hadDepth1Isolation04Bc
reco::GsfTrackRef conversionPartnerGsfTk() const
bool originalGsfTrackCollectionRetreived
void setPassCutBasedPreselection(bool flag)
bool positionFromModeCartesian(const TrajectoryStateOnSurface tsos, GlobalPoint &position) const
double intRadiusEcalEndcaps
unsigned long long cacheIDGeom
std::vector< int > recHitSeverityToBeExcludedEndcaps
unsigned ambClustersOverlapStrategy
void readEvent(const edm::Event &)
EgammaTowerIsolation * hadDepth1Isolation03Bc
double radiusOfConversion() const
void clonePreviousElectrons()
const LorentzVector & p4(P4Kind kind) const
float eSuperClusterOverP() const
The Signals That Services Can Subscribe To This is based on ActivityRegistry and is current per Services can connect to the signals distributed by the ActivityRegistry in order to monitor the activity of the application Each possible callback has some defined which we here list in angle e< void, edm::EventIDconst &, edm::Timestampconst & > We also list in braces which AR_WATCH_USING_METHOD_ is used for those or
void retreiveOriginalTrackCollections(const reco::TrackRef &, const reco::GsfTrackRef &)
bool ecalDrivenEcalErrorFromClassBasedParameterization
float hcalDepth2OverEcal() const
double getEtSum(const reco::Candidate *emObject) const
const IsolationConfiguration isoCfg
double intRadiusEcalBarrel
unsigned ambSortingStrategy
void calculateShowerShape(const reco::SuperClusterRef &, bool pflow, reco::GsfElectron::ShowerShape &)
void beginEvent(edm::Event &)
unsigned long long cacheIDTopo
bool useCombinationRegression
double maxSigmaIetaIetaEndcaps
TrajectoryStateOnSurface sclTSOS
const EcalRecHitsConfiguration recHitsCfg
Geom::Phi< T > phi() const
EventSetupData * eventSetupData_
Global3DPoint GlobalPoint
std::vector< Track > TrackCollection
collection of Tracks
edm::Handle< EcalRecHitCollection > endcapRecHits
double hcalESumDepth2BehindClusters(const std::vector< CaloTowerDetId > &towers)
std::vector< CaloTowerDetId > hcalTowersBehindClusters(const reco::SuperCluster &sc)
const std::vector< std::pair< DetId, float > > & hitsAndFractions() const
double maxDeltaEtaEndcaps
void checkSetup(const edm::EventSetup &)
void setMVAInputs(const std::map< reco::GsfTrackRef, reco::GsfElectron::MvaInput > &mvaInputs)
bool passingCutBasedPreselection() const
float deltaEtaSuperClusterAtVtx
bool passingMvaPreselection() const
float deltaPhiSuperClusterAtVtx
void computeCharge(int &charge, reco::GsfElectron::ChargeInfo &info)
bool momentumFromModeCartesian(const TrajectoryStateOnSurface tsos, GlobalVector &momentum) const
void checkCtfTrack(edm::Handle< reco::TrackCollection > currentCtfTracks)
float hcalDepth1TowerSumEt
double hcalESumDepth1BehindClusters(const std::vector< CaloTowerDetId > &towers)
const InputTagsConfiguration inputCfg
edm::ESHandle< EcalSeverityLevelAlgo > sevLevel
TrajectoryStateOnSurface innTSOS
float hcalDepth1TowerSumEtBc
std::vector< GsfElectron > GsfElectronCollection
collection of GsfElectron objects
EgammaTowerIsolation * hadDepth1Isolation03
const StrategyConfiguration strategyCfg
SoftElectronMVAEstimator * sElectronMVAEstimator
GsfElectronAlgo(const InputTagsConfiguration &, const StrategyConfiguration &, const CutsConfiguration &cutsCfg, const CutsConfiguration &cutsCfgPflow, const ElectronHcalHelper::Configuration &hcalCfg, const ElectronHcalHelper::Configuration &hcalCfgPflow, const IsolationConfiguration &, const EcalRecHitsConfiguration &, EcalClusterFunctionBaseClass *superClusterErrorFunction, EcalClusterFunctionBaseClass *crackCorrectionFunction, const SoftElectronMVAEstimator::Configuration &mvaCfg, const RegressionHelper::Configuration ®Cfg)
edm::ESHandle< CaloTopology > caloTopo
void doFlagChecks(const std::vector< int > &v)
reco::TrackRef conversionPartnerCtfTk() const
void setSuperClusterFbrem(float fbrem)
CaloClusterPtr electronCluster
static bool stripTIDHitFilter(uint32_t pattern)
EgammaRecHitIsolation * ecalBarrelIsol04
TrajectoryStateOnSurface constrainedVtxTSOS
virtual float getValue(const reco::BasicCluster &, const EcalRecHitCollection &) const =0
const RegressionHelper::Configuration regCfg
bool isGsfCtfScPixConsistent
EgammaTowerIsolation * hadDepth2Isolation03
EgammaTowerIsolation * hadDepth1Isolation04
bool isNonnull() const
Checks for non-null.
ElectronTkIsolation * tkIsolation03
GeneralData(const InputTagsConfiguration &, const StrategyConfiguration &, const CutsConfiguration &cutsCfg, const CutsConfiguration &cutsCfgPflow, const ElectronHcalHelper::Configuration &hcalCfg, const ElectronHcalHelper::Configuration &hcalCfgPflow, const IsolationConfiguration &, const EcalRecHitsConfiguration &, EcalClusterFunctionBaseClass *superClusterErrorFunction, EcalClusterFunctionBaseClass *crackCorrectionFunction, const SoftElectronMVAEstimator::Configuration &mvaCfg, const RegressionHelper::Configuration &)
void setUseNumCrystals(bool b=true)
float deltaEtaSuperClusterTrackAtVtx() const
std::vector< int > recHitSeverityToBeExcludedBarrel
void setCorrectedEcalEnergyError(float newEnergyError)
bool isNull() const
Checks for null.
float sigmaIetaIeta() const
float eSeedClusterOverPout
void simpleParameterizationUncertainty(reco::GsfElectron &)
unsigned long long cacheSevLevel
void setCutBasedPreselectionFlag(reco::GsfElectron *ele, const reco::BeamSpot &)
double dPhi(double phi1, double phi2)
std::vector< GsfPFRecTrack > GsfPFRecTrackCollection
collection of GsfPFRecTrack objects
edm::RefToBase< reco::Track > TrackBaseRef
persistent reference to a Track, using views
EgammaRecHitIsolation * ecalEndcapIsol03
EgammaTowerIsolation * hadDepth2Isolation03Bc
RealType normalized_phi(RealType phi)
virtual SuperClusterRef superCluster() const
reference to a SuperCluster
GsfConstraintAtVertex * constraintAtVtx
static bool isNextToPhiBoundary(EBDetId id)
float sumPhotonEt
sum pt of PF photons // old float photonIso ;
edm::Handle< EcalRecHitCollection > barrelRecHits
float deltaPhiSuperClusterTrackAtVtx() const
std::vector< GsfElectronCore > GsfElectronCoreCollection
void correct(reco::GsfElectron &, TrajectoryStateOnSurface &)
static bool pixelHitFilter(uint32_t pattern)
float hcalOverEcal() const
void setPassMvaPreselection(bool flag)
bool pureTrackerDrivenEcalErrorFromSimpleParameterization
IsolationValueMaps pfIsolationValues
Abs< T >::type abs(const T &t)
std::vector< CaloTowerDetId > hcalTowersBehindClusters
float deltaEtaSeedClusterAtCalo
const MultiTrajectoryStateTransform * mtsTransform
static bool isNextToRingBoundary(EEDetId id)
std::list< reco::GsfElectron * > GsfElectronPtrCollection
bool originalCtfTrackCollectionRetreived
double hcalESumDepth2(const reco::SuperCluster &, const std::vector< CaloTowerDetId > *excludeTowers=0)
double energy() const
cluster energy
const CutsConfiguration cutsCfg
ElectronHcalHelper * hcalHelper
float sumNeutralHadronEt
sum pt of neutral hadrons // old float neutralHadronIso ;
const reco::BeamSpot * beamspot
edm::ESHandle< MagneticField > magField
GsfElectronPtrCollection * electrons
CaloClusterPtr getEleBasicCluster(const MultiTrajectoryStateTransform *)
static bool isNextToDBoundary(EEDetId id)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
double maxDeltaPhiEndcaps
int subdetId() const
get the contents of the subdetector field (not cast into any detector's numbering enum) ...
std::vector< int > recHitFlagsToBeExcludedBarrel
void setIsolation04(const IsolationVariables &dr04)
void doSeverityChecks(const EcalRecHitCollection *const recHits, const std::vector< int > &v)
unsigned long long cacheIDMagField
void classify(reco::GsfElectron &)
EgammaTowerIsolation * hadDepth2Isolation04Bc
unsigned long long cacheIDTDGeom
edm::Handle< reco::GsfElectronCollection > previousElectrons
float hcalDepth2TowerSumEtBc
float hcalDepth1OverEcal() const
std::vector< edm::Handle< edm::ValueMap< double > > > IsolationValueMaps
void classBasedParameterizationEnergy(reco::GsfElectron &, const reco::BeamSpot &bs)
edm::Handle< reco::VertexCollection > vertices
EgammaRecHitIsolation * ecalBarrelIsol03
reco::TrackRef ctfTrackRef
edm::Handle< reco::GsfElectronCollection > pflowElectrons
EcalRecHitMetaCollection * ecalBarrelHitsMeta
bool isGsfScPixConsistent
std::vector< int > recHitFlagsToBeExcludedEndcaps
float hcalDepth2TowerSumEt
EcalClusterFunctionBaseClass * superClusterErrorFunction
double maxSigmaIetaIetaBarrel
REF castTo() const
cast to a concrete type
edm::Ref< TrackCollection > TrackRef
persistent reference to a Track
void setPflowPreselectionFlag(reco::GsfElectron *ele)
const MvaOutput & mvaOutput() const
T const * product() const
const reco::GsfTrackRef gsfTrackRef
bool ecalDrivenEcalEnergyFromClassBasedParameterization
void ele_convert(const Type1 &obj1, Type2 &obj2)
void setMVAOutputs(const std::map< reco::GsfTrackRef, reco::GsfElectron::MvaOutput > &mvaOutputs)
T const * product() const
float hcalDepth2OverEcalBc
bool calculateTSOS(const MultiTrajectoryStateTransform *, GsfConstraintAtVertex *)
math::XYZTLorentzVector LorentzVector
Lorentz vector.
virtual GsfElectronCoreRef core() const
float deltaEtaEleClusterAtCalo
return(e1-e2)*(e1-e2)+dp *dp
double mva(const reco::GsfElectron &myElectron, const edm::Event &evt)
double getPtTracks(const reco::GsfElectron *) const
TrajectoryStateOnSurface seedTSOS
float hcalDepth1OverEcalBc
void refineWithPflow(reco::GsfElectron &)
void setIsolation03(const IsolationVariables &dr03)
ESHandle< TrackerGeometry > geometry
edm::Handle< reco::GsfTrackCollection > originalGsfTracks
void applyEcalRegression(reco::GsfElectron &electron, const edm::Handle< reco::VertexCollection > &vertices, const edm::Handle< EcalRecHitCollection > &rechitsEB, const edm::Handle< EcalRecHitCollection > &rechitsEE) const
float eEleClusterOverPout
EgammaTowerIsolation * hadDepth2Isolation04
void setVetoClustered(bool b=true)
static std::atomic< unsigned int > counter
const reco::GsfElectronCoreRef coreRef
float deltaPhiEleClusterAtCalo
edm::Handle< reco::TrackCollection > currentCtfTracks
double getTowerEtSum(const reco::Candidate *cand, const std::vector< CaloTowerDetId > *detIdToExclude=0) const
edm::ESHandle< CaloGeometry > caloGeom
EcalClusterFunctionBaseClass * crackCorrectionFunction
void removeAmbiguousElectrons()
double hcalESumDepth1(const reco::SuperCluster &, const std::vector< CaloTowerDetId > *excludeTowers=0)
void displayInternalElectrons(const std::string &title) const
void setPassPflowPreselection(bool flag)
EgammaRecHitIsolation * ecalEndcapIsol04
void removeNotPreselectedElectrons()
const reco::SuperClusterRef superClusterRef
TrajectoryStateOnSurface eleTSOS
float deltaPhiSeedClusterAtCalo
const Point & position() const
position
TrajectoryStateOnSurface outTSOS
RegressionHelper * regHelper
ElectronData(const reco::GsfElectronCoreRef &core, const reco::BeamSpot &bs)
void copyElectrons(reco::GsfElectronCollection &)
ProductID id() const
Accessor for product ID.
ElectronTkIsolation * tkIsolation04
volatile std::atomic< bool > shutdown_flag false
ElectronData * electronData_
edm::ESHandle< TrackerGeometry > trackerHandle
void setAmbiguityData(bool ignoreNotPreselected=true)
IsolationValueMaps edIsolationValues
T const * get() const
Returns C++ pointer to the item.
virtual float pt() const GCC11_FINAL
transverse momentum
uint32_t getHitPattern(int position) const
float sumChargedHadronPt
sum-pt of charged Hadron // old float chargedHadronIso ;
virtual void init(const edm::EventSetup &es)=0
edm::Handle< reco::GsfElectronCoreCollection > coreElectrons
GlobalVector vtxMomWithConstraint
int ietaAbs() const
get the absolute value of the crystal ieta
void classBasedParameterizationUncertainty(reco::GsfElectron &)
void checkSetup(const edm::EventSetup &)
edm::Handle< CaloTowerCollection > towers
void calculateMode(const MultiTrajectoryStateMode *mtsMode)
math::PtEtaPhiELorentzVectorF LorentzVector
EcalRecHitMetaCollection * ecalEndcapHitsMeta
Global3DVector GlobalVector
void checkSetup(const edm::EventSetup &)
edm::Handle< reco::GsfPFRecTrackCollection > gsfPfRecTracks
TrajectoryStateOnSurface vtxTSOS
virtual GsfTrackRef gsfTrack() const
reference to a GsfTrack
bool ecalDrivenSeed() const
static bool stripTIBHitFilter(uint32_t pattern)
Candidate::LorentzVector calculateMomentum()
bool passingPflowPreselection() const
const reco::BeamSpot beamSpot