1 |
#ifndef __PromptL1_PromptL1Generator_H__
|
2 |
#define __PromptL1_PromptL1Generator_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 PromptL1
|
15 |
{
|
16 |
class PromptL1Generator
|
17 |
{
|
18 |
public:
|
19 |
PromptL1Generator();
|
20 |
~PromptL1Generator();
|
21 |
|
22 |
void Reset();
|
23 |
void Set();
|
24 |
|
25 |
// ---- PromptL1Generator information.
|
26 |
|
27 |
float weight;
|
28 |
float pthat;
|
29 |
|
30 |
};
|
31 |
}
|
32 |
#endif
|
33 |
|
34 |
|