ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisSimulation.h
Revision: 1.2
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
Changes since 1.1: +6 -22 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 econte 1.1 #ifndef __L1Analysis_L1AnalysisSimulation_H__
2     #define __L1Analysis_L1AnalysisSimulation_H__
3    
4     //-------------------------------------------------------------------------------
5     // Created 06/01/2010 - A.C. Le Bihan
6     //
7     //
8     // Original code : UserCode/L1TriggerDPG/L1NtupleProducer
9     //-------------------------------------------------------------------------------
10    
11    
12 econte 1.2 #include "L1AnalysisSimulationDataFormat.h"
13 econte 1.1
14     namespace L1Analysis
15     {
16 econte 1.2 class L1AnalysisSimulation
17 econte 1.1 {
18     public:
19     L1AnalysisSimulation();
20     ~L1AnalysisSimulation();
21     void Set();
22 econte 1.2 L1AnalysisSimulationDataFormat * getData() {return &sim_;}
23     private :
24     L1AnalysisSimulationDataFormat sim_;
25    
26 econte 1.1 };
27     }
28     #endif
29    
30