Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:21:12

0001 #ifndef __L1Analysis_L1AnalysisSimulation_H__
0002 #define __L1Analysis_L1AnalysisSimulation_H__
0003 
0004 //-------------------------------------------------------------------------------
0005 // Created 06/01/2010 - A.C. Le Bihan
0006 //
0007 //
0008 // Original code : L1Trigger/L1TNtuples/L1NtupleProducer
0009 //-------------------------------------------------------------------------------
0010 
0011 #include "FWCore/Framework/interface/Event.h"
0012 #include "L1AnalysisSimulationDataFormat.h"
0013 
0014 namespace L1Analysis {
0015   class L1AnalysisSimulation {
0016   public:
0017     L1AnalysisSimulation();
0018     ~L1AnalysisSimulation();
0019     void Reset() { sim_.Reset(); }
0020     void Set(const edm::Event& e);
0021     L1AnalysisSimulationDataFormat* getData() { return &sim_; }
0022 
0023   private:
0024     L1AnalysisSimulationDataFormat sim_;
0025   };
0026 }  // namespace L1Analysis
0027 #endif