CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GenericJet.h
Go to the documentation of this file.
1 #ifndef JetReco_GenericJet_h
2 #define JetReco_GenericJet_h
3 
16 #include <string>
18 
19 namespace reco {
21  public:
23  GenericJet () {}
25  GenericJet (const LorentzVector& fP4, const Point& fVertex, const std::vector<CandidateBaseRef>& fConstituents);
27  virtual ~GenericJet () {}
28 
30  virtual int nConstituents () const;
31 
33  virtual std::string print () const;
34 
35  };
36 }
37 // temporary fix before include_checcker runs globally
38 #include "DataFormats/JetReco/interface/GenericJetCollection.h" //INCLUDECHECKER:SKIP
39 #endif
GenericJet()
Default constructor.
Definition: GenericJet.h:23
math::XYZTLorentzVector LorentzVector
virtual std::string print() const
Print object.
Definition: GenericJet.cc:24
math::XYZPoint Point
virtual ~GenericJet()
Destructor.
Definition: GenericJet.h:27
virtual int nConstituents() const
of constituents
Definition: GenericJet.cc:20