Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:04:45

0001 #ifndef METReco_PFClusterMET_h
0002 #define METReco_PFClusterMET_h
0003 
0004 /*
0005 class: PFClusterMET
0006 description:  MET made from Particle Flow clusters
0007 authors: Salvatore Rappoccio
0008 date: 28-Dec-2010
0009 */
0010 
0011 #include "DataFormats/METReco/interface/MET.h"
0012 namespace reco {
0013   class PFClusterMET : public MET {
0014   public:
0015     PFClusterMET();
0016     PFClusterMET(double sumet_, const LorentzVector& fP4, const Point& fVertex) : MET(sumet_, fP4, fVertex) {}
0017 
0018     ~PFClusterMET() override {}
0019   };
0020 }  // namespace reco
0021 #endif