ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisGeneratorDataFormat.h
Revision: 1.1
Committed: Thu Jun 17 20:34:32 2010 UTC (14 years, 10 months ago) by econte
Content type: text/plain
Branch: MAIN
CVS Tags: V01-00-00, hi44X_02, L1CorrectionsStudy_13_09_11, CMSSW_4_2_3_patch2, L1TriggerAnalysis_3_6_1patch4
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 econte 1.1 #ifndef __L1Analysis_L1AnalysisGeneratorDataFormat_H__
2     #define __L1Analysis_L1AnalysisGeneratorDataFormat_H__
3    
4     //-------------------------------------------------------------------------------
5     // Created 15/04/2010 - E. Conte, A.C. Le Bihan
6     //
7     //
8     // Original code : UserCode/L1TriggerDPG/L1NtupleProducer
9     //-------------------------------------------------------------------------------
10    
11    
12     namespace L1Analysis
13     {
14     class L1AnalysisGeneratorDataFormat
15     {
16     public:
17     L1AnalysisGeneratorDataFormat(){Reset();};
18     ~L1AnalysisGeneratorDataFormat(){};
19    
20     void Reset()
21     {
22     weight = -999.;
23     pthat = -999.;
24     }
25    
26    
27     // ---- L1AnalysisGeneratorDataFormat information.
28    
29     float weight;
30     float pthat;
31    
32     };
33     }
34     #endif
35    
36