ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisGMT.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: +7 -71 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 econte 1.1 #ifndef __L1Analysis_L1AnalysisGMT_H__
2     #define __L1Analysis_L1AnalysisGMT_H__
3    
4     //-------------------------------------------------------------------------------
5     // Created 06/01/2010 - A.C. Le Bihan
6     //
7     //
8     // Original code : UserCode/L1TriggerDPG/L1NtupleProducer
9     //-------------------------------------------------------------------------------
10    
11     #include "DataFormats/L1GlobalTrigger/interface/L1GlobalTriggerReadoutRecord.h"
12 econte 1.2 #include "L1AnalysisGMTDataFormat.h"
13 econte 1.1
14     namespace L1Analysis
15     {
16     class L1AnalysisGMT
17     {
18     public:
19     L1AnalysisGMT();
20     ~L1AnalysisGMT();
21    
22 econte 1.2 void Set(const L1MuGMTReadoutCollection* gmtrc, unsigned maxDTBX, unsigned maxCSC, unsigned maxRPC, unsigned maxGMT, bool physVal);
23     L1AnalysisGMTDataFormat * getData() {return &gmt_;}
24     void Reset() {gmt_.Reset();}
25    
26     private :
27     L1AnalysisGMTDataFormat gmt_;
28 econte 1.1 };
29     }
30     #endif
31    
32