ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisL1MenuDataFormat.h
Revision: 1.1
Committed: Tue May 24 13:42:08 2011 UTC (13 years, 11 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, HEAD
Log Message:
*** empty log message ***

File Contents

# Content
1 #ifndef __L1Analysis_L1AnalysisL1MenuDataFormat_H__
2 #define __L1Analysis_L1AnalysisL1MenuDataFormat_H__
3
4 #include <vector>
5
6 namespace L1Analysis
7 {
8 struct L1AnalysisL1MenuDataFormat
9 {
10 L1AnalysisL1MenuDataFormat() {Reset();}
11 ~L1AnalysisL1MenuDataFormat() {}
12
13 void Reset()
14 {
15 AlgoTrig_PrescaleFactorIndexValid = false;
16 AlgoTrig_PrescaleFactorIndex = 0;
17 TechTrig_PrescaleFactorIndexValid = false;
18 TechTrig_PrescaleFactorIndex = 0;
19 }
20
21 bool AlgoTrig_PrescaleFactorIndexValid;
22 int AlgoTrig_PrescaleFactorIndex;
23 bool TechTrig_PrescaleFactorIndexValid;
24 int TechTrig_PrescaleFactorIndex;
25
26
27
28 };
29 }
30 #endif
31
32