Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 // File: PFMET.cc
0002 // Description: see PFMET.h
0003 // Author: R. Remington
0004 // Creation Date:  Oct. 2009
0005 
0006 #include "DataFormats/METReco/interface/PFMET.h"
0007 
0008 using namespace std;
0009 using namespace reco;
0010 
0011 //---------------------------------------------------------------------------
0012 // Default Constructor;
0013 //-----------------------------------
0014 PFMET::PFMET() {
0015   // Initialize the container
0016   pf_data.NeutralEMFraction = 0.0;
0017   pf_data.NeutralHadFraction = 0.0;
0018   pf_data.ChargedEMFraction = 0.0;
0019   pf_data.ChargedHadFraction = 0.0;
0020   pf_data.MuonFraction = 0.0;
0021   pf_data.Type6Fraction = 0.0;
0022   pf_data.Type7Fraction = 0.0;
0023 }