ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/PromptL1Simulation.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_PromptL1Simulation_H__
2 #define __PromptL1_PromptL1Simulation_H__
3
4 //-------------------------------------------------------------------------------
5 // Created 06/01/2010 - A.C. Le Bihan
6 //
7 //
8 // Original code : UserCode/L1TriggerDPG/L1NtupleProducer
9 //-------------------------------------------------------------------------------
10
11
12 #include <vector>
13
14 using namespace std;
15
16 namespace PromptL1
17 {
18 class PromptL1Simulation
19 {
20 public:
21 PromptL1Simulation();
22 ~PromptL1Simulation();
23
24 void Reset();
25 //void Print(std::ostream &os = std::cout) const;
26 void Set();
27
28 // ---- PromptL1Simulation information.
29
30
31 int ngen;
32 vector<float> pxgen;
33 vector<float> pygen;
34 vector<float> pzgen;
35 vector<float> ptgen;
36 vector<float> etagen;
37 vector<float> phigen;
38 vector<int> chagen;
39 vector<float> vxgen;
40 vector<float> vygen;
41 vector<float> vzgen;
42 vector<int> pargen;
43
44 };
45 }
46 #endif
47
48