CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/FWCore/Framework/src/EDLooper.cc

Go to the documentation of this file.
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 // $Id: EDLooper.cc,v 1.16 2010/08/09 21:04:54 chrjones Exp $
00009 
00010 #include "FWCore/Framework/interface/EDLooper.h"
00011 #include "FWCore/Framework/interface/Event.h"
00012 #include "FWCore/Framework/interface/Run.h"
00013 #include "FWCore/Framework/interface/LuminosityBlock.h"
00014 #include "DataFormats/Provenance/interface/ModuleDescription.h"
00015 #include "FWCore/Framework/interface/EventSetupProvider.h"
00016 #include "FWCore/Utilities/interface/Algorithms.h"
00017 #include "FWCore/MessageLogger/interface/MessageLogger.h"
00018 #include "FWCore/Framework/interface/Actions.h"
00019 #include "FWCore/Utilities/interface/Exception.h"
00020 #include "FWCore/Framework/interface/ScheduleInfo.h"
00021 
00022 #include "boost/bind.hpp"
00023 
00024 
00025 namespace edm {
00026 
00027   EDLooper::EDLooper() : EDLooperBase(){ }
00028   EDLooper::~EDLooper() { }
00029 
00030   EDLooperBase::Status 
00031   EDLooper::duringLoop(const edm::Event& iEvent, const edm::EventSetup& iEventSetup, edm::ProcessingController& ) {
00032     return duringLoop(iEvent, iEventSetup);
00033   }
00034 
00035   
00036 }