47 inline double ptFast(
const double energy,
50 const auto v = position - origin;
65 else if(step==
"tmp")
flags_ = 0;
67 throw cms::Exception(
"InvalidConfig") <<
" reconstructStep "<<step<<
" is invalid, the options are: tmp, final,oot or ootfinal"<<std::endl;
110 if (not pfEg.label().empty())
112 consumes<reco::PFCandidateCollection>(pfEg);
123 if (not hcTow.label().empty())
125 consumes<CaloTowerCollection>(hcTow);
147 const std::vector<std::string> flagnamesEB =
148 config.
getParameter<std::vector<std::string> >(
"RecHitFlagToBeExcludedEB");
150 const std::vector<std::string> flagnamesEE =
151 config.
getParameter<std::vector<std::string> >(
"RecHitFlagToBeExcludedEE");
154 StringToEnumValue<EcalRecHit::Flags>(flagnamesEB);
157 StringToEnumValue<EcalRecHit::Flags>(flagnamesEE);
159 const std::vector<std::string> severitynamesEB =
160 config.
getParameter<std::vector<std::string> >(
"RecHitSeverityToBeExcludedEB");
163 StringToEnumValue<EcalSeverityLevel::SeverityLevel>(severitynamesEB);
165 const std::vector<std::string> severitynamesEE =
166 config.
getParameter<std::vector<std::string> >(
"RecHitSeverityToBeExcludedEE");
169 StringToEnumValue<EcalSeverityLevel::SeverityLevel>(severitynamesEE);
174 auto sumes = consumesCollector();
175 thePhotonEnergyCorrector_->gedRegression()->setConsumes(sumes);
269 auto outputPhotonCollection_p = std::make_unique<reco::PhotonCollection>();
274 bool validPhotonCoreHandle=
false;
276 bool validPhotonHandle=
false;
300 validPhotonHandle=
true;
307 if (photonCoreHandle.
isValid()) {
308 validPhotonCoreHandle=
true;
316 bool validEcalRecHits=
true;
320 if (!barrelHitHandle.
isValid()) {
322 <<
"Error! Can't get the barrelEcalHits";
329 if (!endcapHitHandle.
isValid()) {
331 <<
"Error! Can't get the endcapEcalHits";
335 bool validPreshowerRecHits=
true;
339 if (!preshowerHitHandle.
isValid()) {
341 <<
"Error! Can't get the preshowerEcalHits";
343 if( validPreshowerRecHits ) preshowerRecHits = *(preshowerHitHandle.
product());
351 if (!pfEGCandidateHandle.
isValid()) {
353 <<
"Error! Can't get the pfEgammaCandidates";
365 <<
"Error! Can't get the pfCandidates";
396 bool validVertex=
true;
401 <<
"Error! Can't get the product primary Vertex Collection";
419 if ( validPhotonCoreHandle)
430 outputPhotonCollection,
442 outputPhotonCollection,
444 phoChargedIsolationMapCITK,
445 phoNeutralHadronIsolationMapCITK,
446 phoPhotonIsolationMapCITK,
447 phoPFECALClusIsolationMap,
448 phoPFHCALClusIsolationMap);
453 edm::LogInfo(
"GEDPhotonProducer") <<
" Put in the event " << iSC <<
" Photon Candidates \n";
454 outputPhotonCollection_p->assign(outputPhotonCollection.begin(),outputPhotonCollection.end());
460 auto pfEGCandToPhotonMap_p = std::make_unique<edm::ValueMap<reco::PhotonRef>>();
462 unsigned nObj = pfEGCandidateHandle->size();
463 std::vector<reco::PhotonRef>
values(nObj);
465 for(
unsigned int lCand=0; lCand < nObj; lCand++) {
469 for(
unsigned int lSC=0; lSC < photonOrphHandle->size(); lSC++) {
472 if ( pfScRef != scRef )
continue;
473 values[lCand] = photonRef;
478 filler.insert(pfEGCandidateHandle,values.begin(),values.end());
506 std::vector<double> preselCutValues;
507 std::vector<int> flags_, severitiesexcl_;
509 for(
unsigned int lSC=0; lSC < photonCoreHandle->size(); lSC++) {
520 DetId::Detector thedet = scRef->seed()->hitsAndFractions()[0].first.det();
521 int subdet = scRef->seed()->hitsAndFractions()[0].first.subdetId();
524 hits = ecalBarrelHits;
529 hits = ecalEndcapHits;
532 }
else if ( isHGCalDet(thedet) ) {
538 edm::LogWarning(
"")<<
"GEDPhotonProducer: do not know if it is a barrel or endcap SuperCluster: " << thedet <<
' ' << subdet;
546 ptFast(parentSCRef->energy(),parentSCRef->position(),
math::XYZPoint(0,0,0)) <= preselCutValues[0] )
continue;
552 std::vector<CaloTowerDetId> TowersBehindClus;
553 float hcalDepth1OverEcalBc,hcalDepth2OverEcalBc;
554 hcalDepth1OverEcalBc=hcalDepth2OverEcalBc=0.f;
555 bool invalidHcal =
false;
566 TowersBehindClus = towerIsoBehindClus.
towersOf(*scRef);
567 hcalDepth1OverEcalBc = towerIsoBehindClus.
getDepth1HcalESum(TowersBehindClus)/scRef->energy();
568 hcalDepth2OverEcalBc = towerIsoBehindClus.
getDepth2HcalESum(TowersBehindClus)/scRef->energy();
570 if (
checkHcalStatus_ && hcalDepth1OverEcalBc == 0 && hcalDepth2OverEcalBc == 0) {
571 invalidHcal = !towerIsoBehindClus.
hasActiveHcal(TowersBehindClus);
582 float e2x5 = ( hits !=
nullptr ? EcalClusterTools::e2x5Max( *(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
583 float e3x3 = ( hits !=
nullptr ? EcalClusterTools::e3x3( *(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
585 std::vector<float> cov = ( hits !=
nullptr ? EcalClusterTools::covariances( *(scRef->seed()), &(*hits), &(*topology),
geometry) : std::vector<float>( {0.f,0.f,0.f} ) );
586 std::vector<float> locCov = ( hits !=
nullptr ? EcalClusterTools::localCovariances( *(scRef->seed()), &(*hits), &(*topology)) : std::vector<float>( {0.f,0.f,0.f} ) );
589 float sigmaIetaIeta =
sqrt(locCov[0]);
601 float full5x5_sigmaEtaEta =
sqrt(full5x5_cov[0]);
609 double photonEnergy=1.;
611 if (!vertexCollection.empty()) vtx = vertexCollection.begin()->position();
627 if( !isHGCalDet(thedet) ) {
630 newCandidate.setFiducialVolumeFlags( fiducialFlags );
631 newCandidate.setIsolationVariables(isolVarR04, isolVarR03 );
638 showerShape.
e3x3= e3x3;
651 const float sep = locCov[1];
654 showerShape.
e2nd = ( hits !=
nullptr ? EcalClusterTools::e2nd(*(scRef->seed()),&(*hits)) : 0.
f );
655 showerShape.
eTop = ( hits !=
nullptr ? EcalClusterTools::eTop(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
656 showerShape.
eLeft = ( hits !=
nullptr ? EcalClusterTools::eLeft(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
657 showerShape.
eRight = ( hits !=
nullptr ? EcalClusterTools::eRight(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
658 showerShape.
eBottom = ( hits !=
nullptr ? EcalClusterTools::eBottom(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
659 showerShape.
e1x3 = ( hits !=
nullptr ? EcalClusterTools::e1x3(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
660 showerShape.
e2x2 = ( hits !=
nullptr ? EcalClusterTools::e2x2(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
661 showerShape.
e2x5Max = ( hits !=
nullptr ? EcalClusterTools::e2x5Max(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
662 showerShape.
e2x5Left = ( hits !=
nullptr ? EcalClusterTools::e2x5Left(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
663 showerShape.
e2x5Right = ( hits !=
nullptr ? EcalClusterTools::e2x5Right(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
664 showerShape.
e2x5Top = ( hits !=
nullptr ? EcalClusterTools::e2x5Top(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
665 showerShape.
e2x5Bottom = ( hits !=
nullptr ? EcalClusterTools::e2x5Bottom(*(scRef->seed()), &(*hits), &(*topology)) : 0.
f );
668 const float sigmaRR = toolsforES.eseffsirir( *scRef );
670 newCandidate.setShowerShapeVariables ( showerShape );
675 int nSaturatedXtals = 0;
676 bool isSeedSaturated =
false;
677 if (hits !=
nullptr) {
678 const auto hitsAndFractions = scRef->hitsAndFractions();
679 for (
auto&& hitFractionPair : hitsAndFractions) {
682 if (
ecalRecHit->checkFlag(EcalRecHit::Flags::kSaturated)) {
685 isSeedSaturated =
true;
691 newCandidate.setSaturationInfo(saturationInfo);
695 full5x5_showerShape.
e1x5= full5x5_e1x5;
696 full5x5_showerShape.
e2x5= full5x5_e2x5;
697 full5x5_showerShape.
e3x3= full5x5_e3x3;
698 full5x5_showerShape.
e5x5= full5x5_e5x5;
700 full5x5_showerShape.
sigmaEtaEta = full5x5_sigmaEtaEta;
703 const float full5x5_spp = (!
edm::isFinite(full5x5_locCov[2]) ? 0. :
sqrt(full5x5_locCov[2]));
704 const float full5x5_sep = full5x5_locCov[1];
721 newCandidate.full5x5_setShowerShapeVariables ( full5x5_showerShape );
729 if( !isHGCalDet(thedet) ) {
750 newCandidate.setP4(
p4);
754 fiducialFlags.
isEE =
true;
755 newCandidate.setFiducialVolumeFlags(fiducialFlags);
771 newCandidate.setMIPVariables(mipVar);
778 if ( newCandidate.pt() <
highEt_) {
779 if ( newCandidate.hadronicOverEm() >= preselCutValues[1] ) isLooseEM=
false;
780 if ( newCandidate.ecalRecHitSumEtConeDR04() > preselCutValues[2]+ preselCutValues[3]*newCandidate.pt() ) isLooseEM=
false;
781 if ( newCandidate.hcalTowerSumEtConeDR04() > preselCutValues[4]+ preselCutValues[5]*newCandidate.pt() ) isLooseEM=
false;
782 if ( newCandidate.nTrkSolidConeDR04() >
int(preselCutValues[6]) ) isLooseEM=
false;
783 if ( newCandidate.nTrkHollowConeDR04() >
int(preselCutValues[7]) ) isLooseEM=
false;
784 if ( newCandidate.trkSumPtSolidConeDR04() > preselCutValues[8] ) isLooseEM=
false;
785 if ( newCandidate.trkSumPtHollowConeDR04() > preselCutValues[9] ) isLooseEM=
false;
786 if ( newCandidate.sigmaIetaIeta() > preselCutValues[10] ) isLooseEM=
false;
792 outputPhotonCollection.push_back(newCandidate);
817 std::vector<double> preselCutValues;
820 for(
unsigned int lSC=0; lSC < photonHandle->size(); lSC++) {
824 DetId::Detector thedet = scRef->seed()->hitsAndFractions()[0].first.det();
825 int subdet = scRef->seed()->hitsAndFractions()[0].first.subdetId();
830 }
else if (isHGCalDet(thedet)) {
833 edm::LogWarning(
"")<<
"GEDPhotonProducer: do not know if it is a barrel or endcap SuperCluster" << thedet <<
' ' << subdet;
840 ptFast(parentSCRef->energy(),parentSCRef->position(),
math::XYZPoint(0,0,0)) <= preselCutValues[0] )
continue;
893 outputPhotonCollection.push_back(newCandidate);
edm::EDGetTokenT< edm::ValueMap< float > > phoNeutralHadronIsolationTokenCITK_
edm::InputTag photonProducer_
void setPflowIsolationVariables(const PflowIsolationVariables &pfisol)
Set Particle Flow Isolation variables.
T getParameter(std::string const &) const
PhotonEnergyCorrector * thePhotonEnergyCorrector_
PhotonMIPHaloTagger * thePhotonMIPHaloTagger_
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
void calculate(const reco::Photon *, const edm::Event &, const edm::EventSetup &es, reco::Photon::FiducialFlags &phofid, reco::Photon::IsolationVariables &phoisolR03, reco::Photon::IsolationVariables &phoisolR04) const
bool isNonnull() const
Checks for non-null.
edm::EDGetTokenT< reco::PFCandidateCollection > pfCandidates_
edm::ESHandle< CaloGeometry > theCaloGeom_
bool existsAs(std::string const ¶meterName, bool trackiness=true) const
checks if a parameter exists as a given type
std::vector< CaloTowerDetId > hcalTowersBehindClusters
ROOT::Math::LorentzVector< ROOT::Math::PxPyPzE4D< double > > XYZTLorentzVectorD
Lorentz vector with cylindrical internal representation using pseudorapidity.
void setCandidateP4type(const P4type type)
void beginRun(edm::Run const &r, edm::EventSetup const &es) final
edm::EDGetTokenT< CaloTowerCollection > hcalTowers_
isolationSumsCalculatorSet
CaloTopology const * topology(0)
bool getByToken(EDGetToken token, Handle< PROD > &result) const
void produce(edm::Event &evt, const edm::EventSetup &es) override
float hcalDepth2OverEcalBc
~GEDPhotonProducer() override
bool exists(std::string const ¶meterName) const
checks if a parameter exists
std::vector< int > flagsexclEB_
std::vector< Vertex > VertexCollection
collection of Vertex objects
edm::EDGetTokenT< EcalRecHitCollection > endcapEcalHits_
PhotonIsolationCalculator * thePhotonIsolationCalculator_
std::vector< int > severitiesexclEE_
std::unique_ptr< ModifyObjectValueBase > & gedRegression()
double ptFast(const double energy, const math::XYZPoint &position, const math::XYZPoint &origin)
std::string photonCollection_
bool hasActiveHcal(const reco::SuperCluster &sc) const
RecoStepInfo(const std::string &recoStep)
edm::EDGetTokenT< edm::ValueMap< float > > phoPhotonIsolationTokenCITK_
edm::ESHandle< CaloTopology > theCaloTopo_
void setTowerCollection(const CaloTowerCollection *towercollection)
edm::EDGetTokenT< EcalRecHitCollection > barrelEcalHits_
PositionCalc posCalculator_
double getDepth1HcalESum(const reco::SuperCluster &sc) const
void setup(const edm::ParameterSet &conf, std::vector< int > const &flagsEB_, std::vector< int > const &flagsEE_, std::vector< int > const &severitiesEB_, std::vector< int > const &severitiesEE_, edm::ConsumesCollector &&iC)
void setPflowIDVariables(const PflowIDVariables &pfid)
std::vector< int > flagsexclEE_
edm::EDGetTokenT< reco::PhotonCoreCollection > photonCoreProducerT_
edm::EDGetTokenT< edm::ValueMap< float > > phoPFHCALClusIsolationToken_
void init(const edm::EventSetup &theEventSetup)
void setup(const edm::ParameterSet &conf, edm::ConsumesCollector &&iC)
double getTowerESum(const reco::Candidate *cand, const std::vector< CaloTowerDetId > *detIdToExclude=0) const
edm::EDGetTokenT< reco::PFCandidateCollection > pfEgammaCandidates_
std::vector< int > severitiesexclEB_
const_iterator end() const
void calculate(edm::Event &evt, reco::Photon &, int subdet, const reco::VertexCollection &vtxcol, const edm::EventSetup &iSetup)
DetId seed() const
return DetId of seed
GEDPhotonProducer(const edm::ParameterSet &ps)
float hcalDepth1OverEcalBc
T const * product() const
std::vector< double > preselCutValuesBarrel_
edm::EDGetTokenT< reco::PhotonCollection > photonProducerT_
XYZVectorD XYZVector
spatial vector with cartesian internal representation
XYZPointD XYZPoint
point in space with cartesian internal representation
edm::EDGetTokenT< edm::ValueMap< float > > phoChargedIsolationTokenCITK_
std::vector< Photon > PhotonCollection
collectin of Photon objects
std::vector< double > preselCutValuesEndcap_
const LorentzVector & p4(P4type type) const
std::string candidateP4type_
void fillPhotonCollection(edm::Event &evt, edm::EventSetup const &es, const edm::Handle< reco::PhotonCoreCollection > &photonCoreHandle, const CaloTopology *topology, const EcalRecHitCollection *ecalBarrelHits, const EcalRecHitCollection *ecalEndcapHits, const EcalRecHitCollection *preshowerHits, const edm::Handle< CaloTowerCollection > &hcalTowersHandle, const reco::VertexCollection &pvVertices, reco::PhotonCollection &outputCollection, int &iSC)
void endRun(edm::Run const &, edm::EventSetup const &) final
std::vector< CaloTowerDetId > towersOf(const reco::SuperCluster &sc) const
double getDepth2HcalESum(const reco::SuperCluster &sc) const
ESHandle< TrackerGeometry > geometry
iterator find(key_type k)
static int position[264][3]
edm::EDGetTokenT< edm::ValueMap< float > > phoPFECALClusIsolationToken_
bool isUninitialized() const
edm::EDGetTokenT< reco::VertexCollection > vertexProducer_
T const * product() const
edm::EDGetTokenT< EcalRecHitCollection > preshowerHits_
void setP4(P4type type, const LorentzVector &p4, float p4Error, bool setToRecoCandidate)
std::string valueMapPFCandPhoton_