Skip to content

Commit

Permalink
Merge pull request #4083 from Dr15Jones/makeFwdPtrProducerStreamModule
Browse files Browse the repository at this point in the history
Convert FwdPtrProducer to stream Producer.
  • Loading branch information
ktf committed Jun 3, 2014
2 parents 273b307 + b0711d0 commit 5ee758a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CommonTools/UtilAlgos/interface/FwdPtrProducer.h
Expand Up @@ -11,7 +11,7 @@
*/


#include "FWCore/Framework/interface/EDProducer.h"
#include "FWCore/Framework/interface/stream/EDProducer.h"
#include "FWCore/Framework/interface/Event.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "FWCore/Utilities/interface/InputTag.h"
Expand All @@ -24,7 +24,7 @@ namespace edm {


template < class T, class H = FwdPtrFromProductFactory<T> >
class FwdPtrProducer : public edm::EDProducer {
class FwdPtrProducer : public edm::stream::EDProducer<> {
public :
explicit FwdPtrProducer( edm::ParameterSet const & params ) :
srcToken_( consumes<edm::View<T> >( params.getParameter<edm::InputTag>("src") ) )
Expand Down

0 comments on commit 5ee758a

Please sign in to comment.