ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/L1TriggerDPG/interface/L1AnalysisSimulation.h
Revision: 1.3
Committed: Mon Oct 29 10:16:19 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: +3 -2 lines
Error occurred while calculating annotation data.
Log Message:
PU info from MC

File Contents

# Content
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 #include "FWCore/Framework/interface/Event.h"
12 #include "L1AnalysisSimulationDataFormat.h"
13
14 namespace L1Analysis
15 {
16 class L1AnalysisSimulation
17 {
18 public:
19 L1AnalysisSimulation();
20 ~L1AnalysisSimulation();
21 void Reset() {sim_.Reset();}
22 void Set(const edm::Event& e);
23 L1AnalysisSimulationDataFormat * getData() {return &sim_;}
24 private :
25 L1AnalysisSimulationDataFormat sim_;
26
27 };
28 }
29 #endif
30
31