Go to the documentation of this file.00001 #ifndef TAU3MUSKIM
00002 #define TAU3MUSKIM
00003
00004
00005 #include <memory>
00006
00007
00008 #include "FWCore/Framework/interface/Frameworkfwd.h"
00009 #include "FWCore/Framework/interface/EDFilter.h"
00010 #include "FWCore/Framework/interface/Event.h"
00011 #include "FWCore/Framework/interface/MakerMacros.h"
00012
00013 #include "FWCore/ParameterSet/interface/ParameterSet.h"
00014
00015
00016
00017
00018
00019 class Tau3MuReco;
00020
00021 class Tau3MuSkim : public edm::EDFilter
00022 {
00023 public:
00024 explicit Tau3MuSkim(const edm::ParameterSet&);
00025 ~Tau3MuSkim();
00026
00027 private:
00028 virtual void beginJob() ;
00029 virtual bool filter(edm::Event&, const edm::EventSetup&);
00030 virtual void endJob() ;
00031
00032
00033 Tau3MuReco* m_Tau3MuReco;
00034
00035 };
00036
00037 #endif