CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch13/src/RecoMET/METAlgorithms/interface/SignPFSpecificAlgo.h

Go to the documentation of this file.
00001 #ifndef METAlgorithms_SignPFSpecificAlgo_h
00002 #define METAlgorithms_SignPFSpecificAlgo_h
00003 
00004 // Organizes information specific to the Jet-based significance for Particle Flow MET
00005 // Author: A. Khukhunaishvili (Cornell), L. Gibbons (Cornell)
00006 // First Implementation: 11/11/10
00007 
00008 #include "RecoMET/METAlgorithms/interface/significanceAlgo.h"
00009 #include "RecoMET/METAlgorithms/interface/SignAlgoResolutions.h"
00010 #include "DataFormats/JetReco/interface/PFJet.h"
00011 #include "DataFormats/ParticleFlowCandidate/interface/PFCandidate.h"
00012 #include "TMatrixD.h"
00013 
00014 
00015 
00016 namespace metsig{
00017   class SignPFSpecificAlgo{
00018     
00019   public:
00020     SignPFSpecificAlgo();
00021     ~SignPFSpecificAlgo();
00022 
00023       
00024     void setResolutions( metsig::SignAlgoResolutions *resolutions);
00025     void addPFJets(edm::Handle<edm::View<reco::PFJet> > PFJets);
00026     void addPFCandidate(reco::PFCandidatePtr pf);
00027     TMatrixD getSignifMatrix() const {return algo_.getSignifMatrix();}
00028     
00029   
00030   private:
00031     metsig::SignAlgoResolutions *resolutions_;
00032     std::set<reco::PFCandidatePtr> clusteredParticlePtrs_;
00033     metsig::significanceAlgo algo_;
00034   };
00035 }
00036 
00037 #endif