1 |
econte |
1.1 |
#ifndef __L1Analysis_L1AnalysisGenerator_H__
|
2 |
|
|
#define __L1Analysis_L1AnalysisGenerator_H__
|
3 |
|
|
|
4 |
|
|
//-------------------------------------------------------------------------------
|
5 |
|
|
// Created 06/01/2010 - A.C. Le Bihan
|
6 |
|
|
//
|
7 |
|
|
//
|
8 |
|
|
// Original code : UserCode/L1TriggerDPG/L1NtupleProducer
|
9 |
|
|
//-------------------------------------------------------------------------------
|
10 |
|
|
|
11 |
|
|
#include <vector>
|
12 |
|
|
|
13 |
|
|
|
14 |
|
|
namespace L1Analysis
|
15 |
|
|
{
|
16 |
|
|
class L1AnalysisGenerator
|
17 |
|
|
{
|
18 |
|
|
public:
|
19 |
|
|
L1AnalysisGenerator();
|
20 |
|
|
~L1AnalysisGenerator();
|
21 |
|
|
|
22 |
|
|
void Reset();
|
23 |
|
|
void Set();
|
24 |
|
|
|
25 |
|
|
// ---- L1AnalysisGenerator information.
|
26 |
|
|
|
27 |
|
|
float weight;
|
28 |
|
|
float pthat;
|
29 |
|
|
|
30 |
|
|
};
|
31 |
|
|
}
|
32 |
|
|
#endif
|
33 |
|
|
|
34 |
|
|
|