/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
CommonTools/ParticleFlow/interface/PFPileUpAlgo.h
52 строки
2 KB
Christopher Jones
Removed unnecessary includes in CommonTools/ParticleFlow
03 окт 2022, 19:13
03 окт 2022, 19:13
318a995
Код
Авторство
О чём код?
#ifndef CommonTools_PFCandProducer_PFPileUpAlgo_ #define CommonTools_PFCandProducer_PFPileUpAlgo_ #include "FWCore/Framework/interface/Frameworkfwd.h" #include "FWCore/Framework/interface/Event.h" #include "DataFormats/ParticleFlowCandidate/interface/PFCandidateFwd.h" #include "DataFormats/VertexReco/interface/VertexFwd.h" class PFPileUpAlgo { public: typedef std::vector<edm::FwdPtr<reco::PFCandidate> > PFCollection; PFPileUpAlgo() : checkClosestZVertex_(true), verbose_(false) { ; } PFPileUpAlgo(bool checkClosestZVertex, bool verbose = false) : checkClosestZVertex_(checkClosestZVertex), verbose_(verbose) { ; } ~PFPileUpAlgo() { ; } // the last parameter is needed if you want to use the sourceCandidatePtr void process(const PFCollection& pfCandidates, const reco::VertexCollection& vertices); inline void setVerbose(bool verbose) { verbose_ = verbose; } inline void setCheckClosestZVertex(bool val) { checkClosestZVertex_ = val; } inline void setNumOfPUVtxsForCharged(unsigned int val) { fNumOfPUVtxsForCharged_ = val; } inline void setDzCutForChargedFromPUVtxs(double val) { fDzCutForChargedFromPUVtxs_ = val; } const PFCollection& getPFCandidatesFromPU() const { return pfCandidatesFromPU_; } const PFCollection& getPFCandidatesFromVtx() const { return pfCandidatesFromVtx_; } int chargedHadronVertex(const reco::VertexCollection& vertices, const reco::PFCandidate& pfcand) const; private: /// use the closest z vertex if a track is not in a vertex bool checkClosestZVertex_; unsigned int fNumOfPUVtxsForCharged_; double fDzCutForChargedFromPUVtxs_; /// verbose ? bool verbose_; PFCollection pfCandidatesFromVtx_; PFCollection pfCandidatesFromPU_; }; #endif