1 |
econte |
1.1 |
#ifndef __L1Analysis_L1AnalysisGeneratorDataFormat_H__
|
2 |
|
|
#define __L1Analysis_L1AnalysisGeneratorDataFormat_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 |
|
|
|
12 |
|
|
namespace L1Analysis
|
13 |
|
|
{
|
14 |
|
|
class L1AnalysisGeneratorDataFormat
|
15 |
|
|
{
|
16 |
|
|
public:
|
17 |
|
|
L1AnalysisGeneratorDataFormat(){Reset();};
|
18 |
|
|
~L1AnalysisGeneratorDataFormat(){};
|
19 |
|
|
|
20 |
|
|
void Reset()
|
21 |
|
|
{
|
22 |
|
|
weight = -999.;
|
23 |
|
|
pthat = -999.;
|
24 |
|
|
}
|
25 |
|
|
|
26 |
|
|
|
27 |
|
|
// ---- L1AnalysisGeneratorDataFormat information.
|
28 |
|
|
|
29 |
|
|
float weight;
|
30 |
|
|
float pthat;
|
31 |
|
|
|
32 |
|
|
};
|
33 |
|
|
}
|
34 |
|
|
#endif
|
35 |
|
|
|
36 |
|
|
|