/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/JetReco/interface/PFClusterJet.h
51 строка
1 KB
Cms Build
Clang-Format
03 июн 2019, 06:38
03 июн 2019, 06:38
0f65aee
Код
Авторство
О чём код?
#ifndef DataFormats_JetReco_PFClusterJet_h #define DataFormats_JetReco_PFClusterJet_h /** \class reco::PFClusterJet * * \short Jets made out of PFClusters * * PFClusterJet represents Jets with PFClusters as constituents. * The consitutents are in this case RecoPFClusterRefCandidates, that * preserve the Refs to the original PFClusters. Those Refs are used to * provide transparent access to the PFClusters. * * \author Salvatore Rappoccio * * ************************************************************/ #include "DataFormats/JetReco/interface/Jet.h" #include "DataFormats/ParticleFlowReco/interface/RecoPFClusterRefCandidate.h" namespace reco { class PFClusterJet : public Jet { public: /// Default constructor PFClusterJet(); /// Constructor without constituents PFClusterJet(const LorentzVector& fP4, const Point& fVertex); /// Constructor from RecoChargedRefCandidate constituents PFClusterJet(const LorentzVector& fP4, const Point& fVertex, const Jet::Constituents& fConstituents); /// Destructor ~PFClusterJet() override {} /// Polymorphic clone PFClusterJet* clone() const override; /// Print object std::string print() const override; /// Easy Constituent access reco::PFClusterRef pfCluster(size_t i) const; private: /// Polymorphic overlap bool overlap(const Candidate& dummy) const override; private: }; } // namespace reco #endif