ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisGenerator.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: +7 -10 lines
Log Message:
*** empty log message ***

File Contents

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