/
githubmirror
/
cmssw
Обзор
Документация
Войти
/
githubmirror
/
cmssw
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
DataFormats/JetReco/interface/BasicJet.h
46 строк
1 KB
Matti Kortelainen
Move stored types in io_v1 namespace, reset class versions to 3
22 май 2026, 18:18
22 май 2026, 18:18
909f324
Код
Авторство
О чём код?
#ifndef JetReco_BasicJet_h #define JetReco_BasicJet_h /** \class reco::BasicJet * * \short Jets made from CaloTowers * * BasicJet represents generic Jets witjout * any specific information * in addition to generic Jet parameters * * \author Fedor Ratnikov, UMd * ************************************************************/ #include "DataFormats/JetReco/interface/Jet.h" namespace reco { namespace io_v1 { class BasicJet : public Jet { public: /** Default constructor*/ BasicJet() {} /** Constructor from values*/ BasicJet(const LorentzVector& fP4, const Point& fVertex); BasicJet(const LorentzVector& fP4, const Point& fVertex, const Jet::Constituents& fConstituents); ~BasicJet() override {} /// Polymorphic clone BasicJet* clone() const override; /// Print object std::string print() const override; private: /// Polymorphic overlap bool overlap(const Candidate&) const override; }; } // namespace io_v1 using BasicJet = io_v1::BasicJet; } // namespace reco // temporary fix before include_checcker runs globally #include "DataFormats/JetReco/interface/BasicJetCollection.h" //INCLUDECHECKER:SKIP #endif