ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/PromptL1Generator.h
Revision: 1.1
Committed: Thu Mar 11 13:56:38 2010 UTC (15 years, 1 month ago) by alebihan
Content type: text/plain
Branch: MAIN
CVS Tags: V20-00-00
Log Message:
general clean-up of prompt analysis code, migration to PromptL1 classes

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