File indexing completed on 2024-04-06 12:04:24
0001 #ifndef JetReco_GenericJet_h
0002 #define JetReco_GenericJet_h
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #include <string>
0016 #include "DataFormats/Candidate/interface/CompositeRefBaseCandidate.h"
0017
0018 namespace reco {
0019 class GenericJet : public CompositeRefBaseCandidate {
0020 public:
0021
0022 GenericJet() {}
0023
0024 GenericJet(const LorentzVector& fP4, const Point& fVertex, const std::vector<CandidateBaseRef>& fConstituents);
0025
0026 ~GenericJet() override {}
0027
0028
0029 virtual int nConstituents() const;
0030
0031
0032 virtual std::string print() const;
0033 };
0034 }
0035
0036 #include "DataFormats/JetReco/interface/GenericJetCollection.h" //INCLUDECHECKER:SKIP
0037 #endif