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 |
|