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
Error occurred while calculating annotation data.
Log Message:
Generator Branch with gen level particles

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 #include "FWCore/Framework/interface/Event.h"
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(const edm::Event& e);
22 L1AnalysisGeneratorDataFormat * getData(){return &generator_;}
23
24 private :
25 L1AnalysisGeneratorDataFormat generator_;
26
27 };
28 }
29 #endif
30
31