ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/PromptL1Simulation.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_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 namespace PromptL1
15 {
16 class PromptL1Simulation
17 {
18 public:
19 PromptL1Simulation();
20 ~PromptL1Simulation();
21
22 void Reset();
23 //void Print(std::ostream &os = std::cout) const;
24 void Set();
25
26 // ---- PromptL1Simulation information.
27
28
29 int ngen;
30 std::vector<float> pxgen;
31 std::vector<float> pygen;
32 std::vector<float> pzgen;
33 std::vector<float> ptgen;
34 std::vector<float> etagen;
35 std::vector<float> phigen;
36 std::vector<int> chagen;
37 std::vector<float> vxgen;
38 std::vector<float> vygen;
39 std::vector<float> vzgen;
40 std::vector<int> pargen;
41
42 };
43 }
44 #endif
45
46