ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisSimulationDataFormat.h
Revision: 1.2
Committed: Mon Oct 29 10:16:19 2012 UTC (12 years, 6 months ago) by gflouris
Content type: text/plain
Branch: MAIN
CVS Tags: V01-01-00, jimb4Jan2013, HEAD
Changes since 1.1: +5 -24 lines
Error occurred while calculating annotation data.
Log Message:
PU info from MC

File Contents

# Content
1 #ifndef __L1Analysis_L1AnalysisSimulationDataFormat_H__
2 #define __L1Analysis_L1AnalysisSimulationDataFormat_H__
3
4 //-------------------------------------------------------------------------------
5 // Created 20/04/2010 - E. Conte, A.C. Le Bihan
6 //
7 //
8 // Original code : UserCode/L1TriggerDPG/L1NtupleProducer
9 //-------------------------------------------------------------------------------
10
11 #include <vector>
12
13 namespace L1Analysis
14 {
15 class L1AnalysisSimulationDataFormat
16 {
17 public:
18 L1AnalysisSimulationDataFormat(){};
19 ~L1AnalysisSimulationDataFormat(){};
20
21 void Reset()
22 {
23 meanInt = -1.;
24 actualInt = -1;
25 }
26
27
28 // ---- L1AnalysisSimulationDataFormat information.
29
30
31 float meanInt;
32 int actualInt;
33
34
35 };
36 }
37 #endif
38
39