ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisGT.h
Revision: 1.2
Committed: Thu Jun 17 20:34:32 2010 UTC (14 years, 10 months ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: V01-01-00, jimb4Jan2013, V01-00-00, hi44X_02, L1CorrectionsStudy_13_09_11, CMSSW_4_2_3_patch2, L1TriggerAnalysis_3_6_1patch4, HEAD
Changes since 1.1: +8 -39 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 econte 1.1 #ifndef __L1Analysis_L1AnalysisGT_H__
2     #define __L1Analysis_L1AnalysisGT_H__
3    
4     //-------------------------------------------------------------------------------
5     // Created 06/01/2010 - A.C. Le Bihan
6     //
7     //
8     // Original code : UserCode/L1TriggerDPG/L1NtupleProducer
9     //-------------------------------------------------------------------------------
10    
11    
12     #include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutRecord.h"
13     #include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerEvmReadoutRecord.h"
14    
15 econte 1.2 #include "L1AnalysisGTDataFormat.h"
16 econte 1.1
17     namespace L1Analysis
18     {
19 econte 1.2 class L1AnalysisGT
20 econte 1.1 {
21     public:
22     L1AnalysisGT();
23     ~L1AnalysisGT();
24    
25     void Set(const L1GlobalTriggerReadoutRecord* gtrr);
26 econte 1.2 void SetEvm(const L1GlobalTriggerEvmReadoutRecord* gtevmrr);
27     void Reset() {gt_.Reset();}
28     L1AnalysisGTDataFormat* getData() {return &gt_;}
29    
30     private :
31     L1AnalysisGTDataFormat gt_;
32 econte 1.1 };
33     }
34     #endif
35    
36