/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
RecoJets/JetProducers/interface/JetSpecific.h
77 строк
3 KB
Christopher Jones
removed EventSetup usage from reco::writeSpecific
14 сен 2021, 22:55
14 сен 2021, 22:55
7f4bf2a
Код
Авторство
О чём код?
#ifndef RecoJets_JetProducers_interface_JetSpecific_h #define RecoJets_JetProducers_interface_JetSpecific_h #include "DataFormats/Candidate/interface/Candidate.h" #include "DataFormats/JetReco/interface/CaloJet.h" #include "DataFormats/JetReco/interface/PFJet.h" #include "DataFormats/JetReco/interface/GenJet.h" #include "DataFormats/JetReco/interface/TrackJet.h" #include "DataFormats/JetReco/interface/PFClusterJet.h" #include "DataFormats/JetReco/interface/BasicJet.h" #include "DataFormats/HcalDetId/interface/HcalSubdetector.h" #include "Geometry/CaloTopology/interface/HcalTopology.h" class CaloSubdetectorGeometry; class CaloGeometry; namespace reco { //______________________________________________________________________________ // Helper methods to write out specific types /// Make CaloJet specifics. Assumes PseudoJet is made from CaloTowerCandidates bool makeSpecific(std::vector<reco::CandidatePtr> const& towers, const CaloSubdetectorGeometry* towerGeometry, reco::CaloJet::Specific* caloJetSpecific, const HcalTopology& topology); void writeSpecific(reco::CaloJet& jet, reco::Particle::LorentzVector const& p4, reco::Particle::Point const& point, std::vector<reco::CandidatePtr> const& constituents, CaloGeometry const& geometry, HcalTopology const& topology); /// Make PFlowJet specifics. Assumes PseudoJet is made from ParticleFlowCandidates bool makeSpecific(std::vector<reco::CandidatePtr> const& particles, reco::PFJet::Specific* pfJetSpecific, edm::ValueMap<float> const* weights = nullptr); void writeSpecific(reco::PFJet& jet, reco::Particle::LorentzVector const& p4, reco::Particle::Point const& point, std::vector<reco::CandidatePtr> const& constituents, edm::ValueMap<float> const* weights = nullptr); /// Make GenJet specifics. Assumes PseudoJet is made from HepMCCandidate bool makeSpecific(std::vector<reco::CandidatePtr> const& mcparticles, reco::GenJet::Specific* genJetSpecific); void writeSpecific(reco::GenJet& jet, reco::Particle::LorentzVector const& p4, reco::Particle::Point const& point, std::vector<reco::CandidatePtr> const& constituents); /// Make TrackJet. Assumes constituents point to tracks, through RecoChargedCandidates. void writeSpecific(reco::TrackJet& jet, reco::Particle::LorentzVector const& p4, reco::Particle::Point const& point, std::vector<reco::CandidatePtr> const& constituents); /// Make PFClusterJet. Assumes PseudoJet is made from PFCluster void writeSpecific(reco::PFClusterJet& jet, reco::Particle::LorentzVector const& p4, reco::Particle::Point const& point, std::vector<reco::CandidatePtr> const& constituents); /// Make BasicJet. Assumes nothing about the jet. void writeSpecific(reco::BasicJet& jet, reco::Particle::LorentzVector const& p4, reco::Particle::Point const& point, std::vector<reco::CandidatePtr> const& constituents); /// converts eta to the corresponding HCAL subdetector. HcalSubdetector hcalSubdetector(int iEta, const HcalTopology& topology); } // namespace reco #endif