CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/DataFormats/METReco/interface/PFClusterMET.h

Go to the documentation of this file.
00001 #ifndef METReco_PFClusterMET_h
00002 #define METReco_PFClusterMET_h
00003 
00004 /*
00005 class: PFClusterMET
00006 description:  MET made from Particle Flow clusters
00007 authors: Salvatore Rappoccio
00008 date: 28-Dec-2010
00009 */
00010 
00011 #include "DataFormats/METReco/interface/MET.h"
00012 namespace reco
00013 {
00014   class PFClusterMET:  public MET {
00015   public:
00016     PFClusterMET() ;
00017     PFClusterMET( double sumet_,
00018                   const LorentzVector& fP4, const Point& fVertex )
00019       : MET( sumet_, fP4, fVertex )  {}
00020 
00021     virtual ~PFClusterMET() {}
00022     
00023 
00024   };
00025 }
00026 #endif