ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/PromptL1Met.h
Revision: 1.2
Committed: Sun Mar 28 22:32:48 2010 UTC (15 years, 1 month ago) by econte
Content type: text/plain
Branch: MAIN
Changes since 1.1: +0 -1 lines
Log Message:
remove 'using namespace std' line

File Contents

# Content
1 #ifndef __PromptL1_PromptL1Met_H__
2 #define __PromptL1_PromptL1Met_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/CaloMET.h"
13
14
15 namespace PromptL1
16 {
17 class PromptL1Met
18 {
19 public:
20 PromptL1Met();
21 ~PromptL1Met();
22
23 void Reset();
24 void Set(edm::Handle<reco::CaloMET> recoMet);
25
26 double met;
27 double metPhi;
28 double Ht;
29 double mHt;
30 double mHtPhi;
31 double sumEt;
32
33 };
34 }
35 #endif
36
37