CMS 3D CMS Logo

List of all members | Public Member Functions
EventSingletonSimpleFlatTableProducer< T > Class Template Reference

#include <SimpleFlatTableProducer.h>

Inheritance diagram for EventSingletonSimpleFlatTableProducer< T >:
SimpleFlatTableProducerBase< T, T > edm::stream::EDProducer<>

Public Member Functions

 EventSingletonSimpleFlatTableProducer (edm::ParameterSet const &params)
 
std::unique_ptr< nanoaod::FlatTablefillTable (const edm::Event &, const edm::Handle< T > &prod) const override
 
 ~EventSingletonSimpleFlatTableProducer () override
 
- Public Member Functions inherited from SimpleFlatTableProducerBase< T, T >
void produce (edm::Event &iEvent, const edm::EventSetup &iSetup) override
 
 SimpleFlatTableProducerBase (edm::ParameterSet const &params)
 
 ~SimpleFlatTableProducerBase () override
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInBeginLumis () const final
 
bool hasAbilityToProduceInBeginProcessBlocks () const final
 
bool hasAbilityToProduceInBeginRuns () const final
 
bool hasAbilityToProduceInEndLumis () const final
 
bool hasAbilityToProduceInEndProcessBlocks () const final
 
bool hasAbilityToProduceInEndRuns () const final
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T... > CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T... > HasAbility
 
typedef CacheTypes::LuminosityBlockCache LuminosityBlockCache
 
typedef LuminosityBlockContextT< LuminosityBlockCache, RunCache, GlobalCacheLuminosityBlockContext
 
typedef CacheTypes::LuminosityBlockSummaryCache LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache, GlobalCacheRunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 
- Protected Types inherited from SimpleFlatTableProducerBase< T, T >
typedef FuncVariable< StringCutObjectSelector< T >, bool > BoolVar
 
typedef FuncVariable< StringObjectFunction< T >, float > FloatVar
 
typedef FuncVariable< StringObjectFunction< T >, int > IntVar
 
typedef FuncVariable< StringObjectFunction< T >, uint8_t > UInt8Var
 
- Protected Attributes inherited from SimpleFlatTableProducerBase< T, T >
const std::string doc_
 
const bool extension_
 
const std::string name_
 
const edm::EDGetTokenT< Tsrc_
 
std::vector< std::unique_ptr< Variable > > vars_
 

Detailed Description

template<typename T>
class EventSingletonSimpleFlatTableProducer< T >

Definition at line 221 of file SimpleFlatTableProducer.h.

Constructor & Destructor Documentation

◆ EventSingletonSimpleFlatTableProducer()

◆ ~EventSingletonSimpleFlatTableProducer()

template<typename T >
EventSingletonSimpleFlatTableProducer< T >::~EventSingletonSimpleFlatTableProducer ( )
inlineoverride

Definition at line 225 of file SimpleFlatTableProducer.h.

225 {}

Member Function Documentation

◆ fillTable()

template<typename T >
std::unique_ptr<nanoaod::FlatTable> EventSingletonSimpleFlatTableProducer< T >::fillTable ( const edm::Event ,
const edm::Handle< T > &  prod 
) const
inlineoverridevirtual

Implements SimpleFlatTableProducerBase< T, T >.

Definition at line 227 of file SimpleFlatTableProducer.h.

227  {
228  auto out = std::make_unique<nanoaod::FlatTable>(1, this->name_, true, this->extension_);
229  std::vector<const T *> selobjs(1, prod.product());
230  for (const auto &var : this->vars_)
231  var->fill(selobjs, *out);
232  return out;
233  }

References SimpleFlatTableProducerBase< T, T >::extension_, SimpleFlatTableProducerBase< T, T >::name_, MillePedeFileConverter_cfg::out, dumpMFGeometry_cfg::prod, trigObjTnPSource_cfi::var, and SimpleFlatTableProducerBase< T, T >::vars_.

CalibrationSummaryClient_cfi.params
params
Definition: CalibrationSummaryClient_cfi.py:14
trigObjTnPSource_cfi.var
var
Definition: trigObjTnPSource_cfi.py:21
dumpMFGeometry_cfg.prod
prod
Definition: dumpMFGeometry_cfg.py:24
SimpleFlatTableProducerBase< T, T >::name_
const std::string name_
Definition: SimpleFlatTableProducer.h:58
MillePedeFileConverter_cfg.out
out
Definition: MillePedeFileConverter_cfg.py:31
SimpleFlatTableProducerBase< T, T >
SimpleFlatTableProducerBase< T, T >::vars_
std::vector< std::unique_ptr< Variable > > vars_
Definition: SimpleFlatTableProducer.h:118
SimpleFlatTableProducerBase< T, T >::extension_
const bool extension_
Definition: SimpleFlatTableProducer.h:60