File indexing completed on 2024-04-06 12:26:40
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018 #ifndef METAlgorithms_PFClusterMETInfo_h
0019 #define METAlgorithms_PFClusterMETInfo_h
0020
0021
0022 #include "DataFormats/METReco/interface/PFClusterMET.h"
0023 #include "DataFormats/Common/interface/Handle.h"
0024 #include "DataFormats/Common/interface/View.h"
0025 #include "DataFormats/Math/interface/LorentzVector.h"
0026 #include "DataFormats/Math/interface/Point3D.h"
0027 #include "DataFormats/METReco/interface/CommonMETData.h"
0028
0029
0030 class PFClusterSpecificAlgo {
0031 public:
0032 PFClusterSpecificAlgo() { ; }
0033 reco::PFClusterMET addInfo(edm::Handle<edm::View<reco::Candidate> > PFClusterCandidates, const CommonMETData& met);
0034
0035 private:
0036 typedef math::XYZTLorentzVector LorentzVector;
0037 typedef math::XYZPoint Point;
0038 };
0039
0040
0041 #endif