ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/PromptL1Generator.h
Revision: 1.3
Committed: Thu Apr 8 09:43:58 2010 UTC (15 years ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +0 -0 lines
State: FILE REMOVED
Log Message:
PromptL1 -> L1Analysis

File Contents

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