BeginLuminosityBlockProducer

BeginProcessBlockProducer

BeginRunProducer

EndLuminosityBlockProducer

EndProcessBlockProducer

EndRunProducer

ExternalWork

WatchProcessBlock

Line Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
// -*- C++ -*-
//
// Package:     Package
// Class  :     producerImplementors
//
// Implementation:
//     Explicitly instantiate implementor templates for EDProducerBase
//
// Original Author:  Chris Jones
//         Created:  Thu, 09 May 2013 20:14:06 GMT
//

// system include files

// user include files
#include "FWCore/Framework/src/global/implementorsMethods.h"
#include "FWCore/Framework/interface/global/EDProducerBase.h"

namespace edm {
  namespace global {
    namespace impl {
      template class WatchProcessBlock<edm::global::EDProducerBase>;
      template class BeginProcessBlockProducer<edm::global::EDProducerBase>;
      template class EndProcessBlockProducer<edm::global::EDProducerBase>;
      template class BeginRunProducer<edm::global::EDProducerBase>;
      template class EndRunProducer<edm::global::EDProducerBase>;
      template class BeginLuminosityBlockProducer<edm::global::EDProducerBase>;
      template class EndLuminosityBlockProducer<edm::global::EDProducerBase>;
      template class ExternalWork<edm::global::EDProducerBase>;
    }  // namespace impl
  }  // namespace global
}  // namespace edm