CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/SimGeneral/MixingModule/plugins/InputAnalyzer.h

Go to the documentation of this file.
00001 // -*- C++ -*-
00002 //
00003 // Package:    InputAnalyzer
00004 // Class:      InputAnalyzer
00005 // 
00009 //
00010 // Original Author:  Emilia Lubenova Becheva
00011 //         Created:  Mon Apr 20 13:43:06 CEST 2009
00012 // $Id: InputAnalyzer.h,v 1.1 2009/04/24 13:35:34 ebecheva Exp $
00013 //
00014 //
00015 
00016 #ifndef InputAnalyzer_h
00017 #define InputAnalyzer_h
00018 
00019 
00020 #include "FWCore/Framework/interface/Frameworkfwd.h"
00021 #include "FWCore/Framework/interface/EDAnalyzer.h"
00022 
00023 #include "FWCore/Framework/interface/Event.h"
00024 #include "FWCore/Framework/interface/MakerMacros.h"
00025 
00026 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00027 
00028 //
00029 // class decleration
00030 //
00031 namespace edm
00032 {
00033 class InputAnalyzer : public edm::EDAnalyzer {
00034    public:
00035       explicit InputAnalyzer(const edm::ParameterSet&);
00036       ~InputAnalyzer();
00037 
00038 
00039    private:
00040       virtual void beginJob() ;
00041       virtual void analyze(const edm::Event&, const edm::EventSetup&);
00042       virtual void endJob() ;
00043 
00044       // ----------member data ---------------------------
00045       
00046       bool dataStep2_;
00047       edm::InputTag label_;
00048 
00049   
00050 };
00051 }//edm
00052 #endif