ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisGenerator.h
Revision: 1.1
Committed: Thu Apr 8 09:43:58 2010 UTC (15 years ago) by econte
Content type: text/plain
Branch: MAIN
Branch point for: oldformat_06072010
Log Message:
PromptL1 -> L1Analysis

File Contents

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