Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008 #include "DataFormats/Math/interface/LorentzVector.h"
00009 #include "RecoMET/METAlgorithms/interface/PFClusterSpecificAlgo.h"
00010 #include "RecoMET/METAlgorithms/interface/significanceAlgo.h"
00011 #include "DataFormats/RecoCandidate/interface/RecoCandidate.h"
00012 #include "DataFormats/RecoCandidate/interface/RecoPFClusterRefCandidate.h"
00013 using namespace reco;
00014 using namespace std;
00015
00016
00017
00018
00019
00020 reco::PFClusterMET PFClusterSpecificAlgo::addInfo(edm::Handle<edm::View<Candidate> > PFClusterCandidates, CommonMETData met)
00021 {
00022 const LorentzVector p4(met.mex , met.mey, 0.0, met.met);
00023 const Point vtx(0.0,0.0,0.0);
00024 PFClusterMET specificPFClusterMET( met.sumet, p4, vtx );
00025 return specificPFClusterMET;
00026 }