CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_1/src/FastSimulation/HighLevelTrigger/src/DummyModule.cc

Go to the documentation of this file.
00001 #include "FWCore/Framework/interface/MakerMacros.h"
00002 #include "FastSimulation/HighLevelTrigger/interface/DummyModule.h"
00003 
00004 DummyModule::DummyModule(edm::ParameterSet const & p) {
00005 
00006   produces<bool>();
00007 
00008 }
00009 
00010 DummyModule::~DummyModule() {}
00011 
00012 void 
00013 DummyModule::produce(edm::Event & e, const edm::EventSetup & c) {;}
00014 
00015 
00016 DEFINE_FWK_MODULE(DummyModule);
00017