File indexing completed on 2024-09-07 04:35:53
0001 #ifndef JetReco_BasicJet_h
0002 #define JetReco_BasicJet_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016 #include "DataFormats/JetReco/interface/Jet.h"
0017
0018 namespace reco {
0019 class BasicJet : public Jet {
0020 public:
0021
0022 BasicJet() {}
0023
0024
0025 BasicJet(const LorentzVector& fP4, const Point& fVertex);
0026 BasicJet(const LorentzVector& fP4, const Point& fVertex, const Jet::Constituents& fConstituents);
0027
0028 ~BasicJet() override {}
0029
0030
0031 BasicJet* clone() const override;
0032
0033
0034 std::string print() const override;
0035
0036 private:
0037
0038 bool overlap(const Candidate&) const override;
0039 };
0040 }
0041
0042 #include "DataFormats/JetReco/interface/BasicJetCollection.h" //INCLUDECHECKER:SKIP
0043 #endif