1 |
#ifndef __L1Analysis_L1AnalysisEventDataFormat_H__
|
2 |
#define __L1Analysis_L1AnalysisEventDataFormat_H__
|
3 |
|
4 |
//-------------------------------------------------------------------------------
|
5 |
// Created 15/04/2010 - E. Conte, A.C. Le Bihan
|
6 |
//
|
7 |
//
|
8 |
// Original code : UserCode/L1TriggerDPG/L1NtupleProducer
|
9 |
//-------------------------------------------------------------------------------
|
10 |
|
11 |
// #include <inttypes.h>
|
12 |
#include <TROOT.h>
|
13 |
#include <vector>
|
14 |
#include <TString.h>
|
15 |
|
16 |
namespace L1Analysis
|
17 |
{
|
18 |
struct L1AnalysisEventDataFormat
|
19 |
{
|
20 |
L1AnalysisEventDataFormat() {Reset();}
|
21 |
~L1AnalysisEventDataFormat(){}
|
22 |
|
23 |
void Reset()
|
24 |
{
|
25 |
run = -1;
|
26 |
event = -1;
|
27 |
lumi = -1;
|
28 |
bx = -1;
|
29 |
orbit = 0;
|
30 |
time = 0;
|
31 |
hlt.resize(0);
|
32 |
}
|
33 |
|
34 |
int run;
|
35 |
int event;
|
36 |
int lumi;
|
37 |
int bx;
|
38 |
//boost::uint64_t orbit;
|
39 |
ULong64_t orbit;
|
40 |
//boost::uint64_t time;
|
41 |
ULong64_t time;
|
42 |
std::vector<TString> hlt;
|
43 |
|
44 |
double puWeight;
|
45 |
|
46 |
};
|
47 |
}
|
48 |
#endif
|
49 |
|
50 |
|