00001 // -*- C++ -*- 00002 // 00003 // Package: <package> 00004 // Module: EDLooper 00005 // 00006 // Author: Valentin Kuznetsov 00007 // Created: Wed Jul 5 11:44:26 EDT 2006 00008 00009 #include "FWCore/Framework/interface/EDLooper.h" 00010 namespace edm { 00011 00012 EDLooper::EDLooper() : EDLooperBase(){ } 00013 EDLooper::~EDLooper() { } 00014 00015 EDLooperBase::Status 00016 EDLooper::duringLoop(Event const& iEvent, EventSetup const& iEventSetup, ProcessingController&) { 00017 return duringLoop(iEvent, iEventSetup); 00018 } 00019 }