ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisRecoMet.h
Revision: 1.2
Committed: Tue Apr 13 07:30:30 2010 UTC (15 years ago) by alebihan
Content type: text/plain
Branch: MAIN
Branch point for: oldformat_06072010
Changes since 1.1: +5 -1 lines
Log Message:
filling of mht et ht - input parameters are made const

File Contents

# Content
1 #ifndef __L1Analysis_L1AnalysisRecoMet_H__
2 #define __L1Analysis_L1AnalysisRecoMet_H__
3
4 //-------------------------------------------------------------------------------
5 // Created 03/03/2010 - A.C. Le Bihan
6 //
7 //
8 // Addition of met reco information
9 //-------------------------------------------------------------------------------
10
11 #include <vector>
12 #include "DataFormats/METReco/interface/CaloMETCollection.h"
13 #include "DataFormats/METReco/interface/CaloMET.h"
14 #include "DataFormats/JetReco/interface/CaloJetCollection.h"
15 #include <vector>
16 #include "TVector2.h"
17
18 namespace L1Analysis
19 {
20 class L1AnalysisRecoMet
21 {
22 public:
23 L1AnalysisRecoMet();
24 ~L1AnalysisRecoMet();
25
26 void Reset();
27 void SetMet(const edm::Handle<reco::CaloMETCollection> recoMet);
28 void SetHtMht(const edm::Handle<reco::CaloJetCollection> caloJets, float jetptThreshold);
29
30 double met;
31 double metPhi;
32 double Ht;
33 double mHt;
34 double mHtPhi;
35 double sumEt;
36
37 };
38 }
39 #endif
40
41