ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/PromptL1Met.h
Revision: 1.4
Committed: Thu Apr 8 09:43:58 2010 UTC (15 years ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +0 -0 lines
State: FILE REMOVED
Log Message:
PromptL1 -> L1Analysis

File Contents

# User Rev Content
1 alebihan 1.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 econte 1.3 #include "DataFormats/METReco/interface/CaloMETCollection.h"
13 alebihan 1.1 #include "DataFormats/METReco/interface/CaloMET.h"
14    
15     namespace PromptL1
16     {
17     class PromptL1Met
18     {
19     public:
20     PromptL1Met();
21     ~PromptL1Met();
22    
23     void Reset();
24 econte 1.3 void Set(edm::Handle<reco::CaloMETCollection> recoMet);
25 alebihan 1.1
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