CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Types | Public Member Functions | Private Member Functions
edm::stream::EDProducer< T > Class Template Reference

#include "FWCore/Framework/interface/stream/EDProducer.h"

Inheritance diagram for edm::stream::EDProducer< T >:
ZdcSimpleReconstructor

Public Types

using CacheTypes = CacheContexts< T...>
 
using GlobalCache = typename CacheTypes::GlobalCache
 
using HasAbility = AbilityChecker< T...>
 
using InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache
 
using LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache
 
using LuminosityBlockContext = LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCache >
 
using LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache
 
using RunCache = typename CacheTypes::RunCache
 
using RunContext = RunContextT< RunCache, GlobalCache >
 
using RunSummaryCache = typename CacheTypes::RunSummaryCache
 

Public Member Functions

 EDProducer ()=default
 
 EDProducer (const EDProducer &)=delete
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 
const EDProduceroperator= (const EDProducer &)=delete
 

Private Member Functions

void doAcquire_ (Event const &ev, EventSetup const &es, WaitingTaskWithArenaHolder &holder) final
 

Detailed Description

template<typename... T>
class edm::stream::EDProducer< T >

Description: Base class for stream based EDProducers

Usage: <usage>

Definition at line 36 of file EDProducer.h.

Member Typedef Documentation

template<typename... T>
using edm::stream::EDProducer< T >::CacheTypes = CacheContexts<T...>

Definition at line 41 of file EDProducer.h.

template<typename... T>
using edm::stream::EDProducer< T >::GlobalCache = typename CacheTypes::GlobalCache

Definition at line 43 of file EDProducer.h.

template<typename... T>
using edm::stream::EDProducer< T >::HasAbility = AbilityChecker<T...>

Definition at line 52 of file EDProducer.h.

template<typename... T>
using edm::stream::EDProducer< T >::InputProcessBlockCache = typename CacheTypes::InputProcessBlockCache

Definition at line 44 of file EDProducer.h.

template<typename... T>
using edm::stream::EDProducer< T >::LuminosityBlockCache = typename CacheTypes::LuminosityBlockCache

Definition at line 46 of file EDProducer.h.

Definition at line 48 of file EDProducer.h.

template<typename... T>
using edm::stream::EDProducer< T >::LuminosityBlockSummaryCache = typename CacheTypes::LuminosityBlockSummaryCache

Definition at line 50 of file EDProducer.h.

template<typename... T>
using edm::stream::EDProducer< T >::RunCache = typename CacheTypes::RunCache

Definition at line 45 of file EDProducer.h.

template<typename... T>
using edm::stream::EDProducer< T >::RunContext = RunContextT<RunCache, GlobalCache>

Definition at line 47 of file EDProducer.h.

template<typename... T>
using edm::stream::EDProducer< T >::RunSummaryCache = typename CacheTypes::RunSummaryCache

Definition at line 49 of file EDProducer.h.

Constructor & Destructor Documentation

template<typename... T>
edm::stream::EDProducer< T >::EDProducer ( )
default
template<typename... T>
edm::stream::EDProducer< T >::EDProducer ( const EDProducer< T > &  )
delete

Member Function Documentation

template<typename... T>
void edm::stream::EDProducer< T >::doAcquire_ ( Event const &  ev,
EventSetup const &  es,
WaitingTaskWithArenaHolder holder 
)
inlinefinalprivate

Definition at line 72 of file EDProducer.h.

72  {
73  doAcquireIfNeeded(this, ev, es, holder);
74  }
bool ev
void doAcquireIfNeeded(impl::ExternalWork *, Event const &, EventSetup const &, WaitingTaskWithArenaHolder &)
template<typename... T>
bool edm::stream::EDProducer< T >::hasAbilityToProduceInBeginLumis ( ) const
inlinefinal

Definition at line 68 of file EDProducer.h.

68 { return HasAbilityToProduceInBeginLumis<T...>::value; }
long double T
template<typename... T>
bool edm::stream::EDProducer< T >::hasAbilityToProduceInBeginProcessBlocks ( ) const
inlinefinal

Definition at line 58 of file EDProducer.h.

58  {
59  return HasAbilityToProduceInBeginProcessBlocks<T...>::value;
60  }
long double T
template<typename... T>
bool edm::stream::EDProducer< T >::hasAbilityToProduceInBeginRuns ( ) const
inlinefinal

Definition at line 65 of file EDProducer.h.

65 { return HasAbilityToProduceInBeginRuns<T...>::value; }
long double T
template<typename... T>
bool edm::stream::EDProducer< T >::hasAbilityToProduceInEndLumis ( ) const
inlinefinal

Definition at line 69 of file EDProducer.h.

69 { return HasAbilityToProduceInEndLumis<T...>::value; }
long double T
template<typename... T>
bool edm::stream::EDProducer< T >::hasAbilityToProduceInEndProcessBlocks ( ) const
inlinefinal

Definition at line 61 of file EDProducer.h.

61  {
62  return HasAbilityToProduceInEndProcessBlocks<T...>::value;
63  }
long double T
template<typename... T>
bool edm::stream::EDProducer< T >::hasAbilityToProduceInEndRuns ( ) const
inlinefinal

Definition at line 66 of file EDProducer.h.

66 { return HasAbilityToProduceInEndRuns<T...>::value; }
long double T
template<typename... T>
const EDProducer& edm::stream::EDProducer< T >::operator= ( const EDProducer< T > &  )
delete