ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisGenerator.h
Revision: 1.3
Committed: Mon Oct 29 10:21:52 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.2: +2 -2 lines
Log Message:
Generator Branch with gen level particles

File Contents

# User Rev Content
1 econte 1.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 gflouris 1.3 #include "FWCore/Framework/interface/Event.h"
11 econte 1.2 #include "UserCode/L1TriggerDPG/interface/L1AnalysisGeneratorDataFormat.h"
12 econte 1.1
13     namespace L1Analysis
14     {
15 econte 1.2 class L1AnalysisGenerator
16 econte 1.1 {
17     public:
18     L1AnalysisGenerator();
19     ~L1AnalysisGenerator();
20 econte 1.2 void Reset() {generator_.Reset();}
21 gflouris 1.3 void Set(const edm::Event& e);
22 econte 1.2 L1AnalysisGeneratorDataFormat * getData(){return &generator_;}
23    
24     private :
25     L1AnalysisGeneratorDataFormat generator_;
26 econte 1.1
27     };
28     }
29     #endif
30    
31