/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/ParticleFlow/plugins/PFCandWithSuperClusterExtractor.h
80 строк
4 KB
Shahzad Malik Muzaffar
[RECONSTRUCTION] Changes suggested by new llvm18 clang-format
05 сен 2024, 17:05
05 сен 2024, 17:05
a09aaae
Код
Авторство
О чём код?
#ifndef CommonToolsParticleFlow_PDCandWithSuperCluster_H #define CommonToolsParticleFlow_PDCandWithSuperCluster_H #include <string> #include <vector> #include "FWCore/Framework/interface/ConsumesCollector.h" #include "DataFormats/RecoCandidate/interface/IsoDeposit.h" #include "DataFormats/TrackReco/interface/Track.h" #include "DataFormats/TrackReco/interface/TrackFwd.h" #include "DataFormats/ParticleFlowCandidate/interface/PFCandidate.h" #include "DataFormats/EgammaCandidates/interface/Photon.h" #include "DataFormats/EgammaCandidates/interface/GsfElectron.h" #include "DataFormats/ParticleFlowCandidate/interface/PFCandidateFwd.h" #include "DataFormats/TrackReco/interface/Track.h" #include "DataFormats/TrackReco/interface/TrackFwd.h" #include "PhysicsTools/IsolationAlgos/interface/IsoDepositExtractor.h" class PFCandWithSuperClusterExtractor : public reco::isodeposit::IsoDepositExtractor { public: PFCandWithSuperClusterExtractor() {} PFCandWithSuperClusterExtractor(const edm::ParameterSet &par, edm::ConsumesCollector &&iC); ~PFCandWithSuperClusterExtractor() override {} void fillVetos(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::TrackCollection &cand) override {} reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &muon) const override { return depositFromObject(ev, evSetup, muon); } reco::IsoDeposit deposit(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Candidate &cand) const override { const reco::Photon *myPhoton = dynamic_cast<const reco::Photon *>(&cand); if (myPhoton) return depositFromObject(ev, evSetup, *myPhoton); const reco::GsfElectron *myElectron = dynamic_cast<const reco::GsfElectron *>(&cand); if (myElectron) return depositFromObject(ev, evSetup, *myElectron); const reco::PFCandidate *myPFCand = dynamic_cast<const reco::PFCandidate *>(&cand); return depositFromObject(ev, evSetup, *myPFCand); } private: reco::IsoDeposit::Veto veto(const reco::IsoDeposit::Direction &dir) const; reco::IsoDeposit depositFromObject(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Photon &cand) const; reco::IsoDeposit depositFromObject(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::GsfElectron &cand) const; reco::IsoDeposit depositFromObject(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::Track &cand) const; reco::IsoDeposit depositFromObject(const edm::Event &ev, const edm::EventSetup &evSetup, const reco::PFCandidate &cand) const; // Parameter set edm::EDGetTokenT<reco::PFCandidateCollection> thePFCandToken; // Track Collection Label std::string theDepositLabel; // name for deposit bool theVetoSuperClusterMatch; //SuperClusterRef Check bool theMissHitVetoSuperClusterMatch; // veto PF photons sharing SC with supercluster if misshits >0 double theDiff_r; // transverse distance to vertex double theDiff_z; // z distance to vertex double theDR_Max; // Maximum cone angle for deposits double theDR_Veto; // Veto cone angle }; #endif