CMS 3D CMS Logo

List of all members | Classes | Public Types | Public Member Functions | Protected Types | Protected Attributes
SimpleFlatTableProducer< T > Class Template Reference

#include <SimpleFlatTableProducer.h>

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

Classes

class  ExtVariable
 
class  ValueMapVariable
 

Public Types

typedef SimpleFlatTableProducerBase< T, edm::View< T > > base
 
- 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
 

Public Member Functions

std::unique_ptr< nanoaod::FlatTablefillTable (const edm::Event &iEvent, const edm::Handle< edm::View< T >> &prod) const override
 
 SimpleFlatTableProducer (edm::ParameterSet const &params)
 
 ~SimpleFlatTableProducer () override
 
- Public Member Functions inherited from SimpleFlatTableProducerBase< T, edm::View< T > >
virtual std::unique_ptr< nanoaod::FlatTablefillTable (const edm::Event &iEvent, const edm::Handle< edm::View< T > > &prod) const =0
 
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 hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 

Protected Types

typedef ValueMapVariable< bool, uint8_t > BoolExtVar
 
typedef ValueMapVariable< double, float > DoubleExtVar
 
typedef ValueMapVariable< float > FloatExtVar
 
typedef ValueMapVariable< int > IntExtVar
 
typedef ValueMapVariable< int, uint8_t > UInt8ExtVar
 
- Protected Types inherited from SimpleFlatTableProducerBase< T, edm::View< T > >
typedef FuncVariable< StringCutObjectSelector< T >, uint8_t > BoolVar
 
typedef FuncVariable< StringObjectFunction< T >, float > FloatVar
 
typedef FuncVariable< StringObjectFunction< T >, int > IntVar
 
typedef FuncVariable< StringObjectFunction< T >, uint8_t > UInt8Var
 

Protected Attributes

const StringCutObjectSelector< Tcut_
 
boost::ptr_vector< ExtVariableextvars_
 
const unsigned int maxLen_
 
bool singleton_
 
- Protected Attributes inherited from SimpleFlatTableProducerBase< T, edm::View< T > >
const std::string doc_
 
const bool extension_
 
const std::string name_
 
const edm::EDGetTokenT< edm::View< T > > src_
 
boost::ptr_vector< Variable > vars_
 

Detailed Description

template<typename T>
class SimpleFlatTableProducer< T >

Definition at line 110 of file SimpleFlatTableProducer.h.

Member Typedef Documentation

template<typename T >
typedef SimpleFlatTableProducerBase<T, edm::View<T> > SimpleFlatTableProducer< T >::base

Definition at line 112 of file SimpleFlatTableProducer.h.

template<typename T >
typedef ValueMapVariable<bool,uint8_t> SimpleFlatTableProducer< T >::BoolExtVar
protected

Definition at line 191 of file SimpleFlatTableProducer.h.

template<typename T >
typedef ValueMapVariable<double,float> SimpleFlatTableProducer< T >::DoubleExtVar
protected

Definition at line 190 of file SimpleFlatTableProducer.h.

template<typename T >
typedef ValueMapVariable<float> SimpleFlatTableProducer< T >::FloatExtVar
protected

Definition at line 189 of file SimpleFlatTableProducer.h.

template<typename T >
typedef ValueMapVariable<int> SimpleFlatTableProducer< T >::IntExtVar
protected

Definition at line 188 of file SimpleFlatTableProducer.h.

template<typename T >
typedef ValueMapVariable<int,uint8_t> SimpleFlatTableProducer< T >::UInt8ExtVar
protected

Definition at line 192 of file SimpleFlatTableProducer.h.

Constructor & Destructor Documentation

template<typename T >
SimpleFlatTableProducer< T >::SimpleFlatTableProducer ( edm::ParameterSet const &  params)
inline

Definition at line 114 of file SimpleFlatTableProducer.h.

References nanoaod::FlatTable::BoolColumn, Exception, edm::ParameterSet::existsAs(), nanoaod::FlatTable::FloatColumn, edm::ParameterSet::getParameter(), edm::ParameterSet::getParameterNamesForType(), nanoaod::FlatTable::IntColumn, AlCaHLTBitMon_QueryRunRegistry::string, and nanoaod::FlatTable::UInt8Column.

114  :
116  singleton_(params.getParameter<bool>("singleton")),
117  maxLen_(params.existsAs<unsigned int>("maxLen") ? params.getParameter<unsigned int>("maxLen") : std::numeric_limits<unsigned int>::max()),
118  cut_(!singleton_ ? params.getParameter<std::string>("cut") : "", true)
119  {
120  if (params.existsAs<edm::ParameterSet>("externalVariables")) {
121  edm::ParameterSet const & extvarsPSet = params.getParameter<edm::ParameterSet>("externalVariables");
122  for (const std::string & vname : extvarsPSet.getParameterNamesForType<edm::ParameterSet>()) {
123  const auto & varPSet = extvarsPSet.getParameter<edm::ParameterSet>(vname);
124  const std::string & type = varPSet.getParameter<std::string>("type");
125  if (type == "int") extvars_.push_back(new IntExtVar(vname, nanoaod::FlatTable::IntColumn, varPSet, this->consumesCollector()));
126  else if (type == "float") extvars_.push_back(new FloatExtVar(vname, nanoaod::FlatTable::FloatColumn, varPSet, this->consumesCollector()));
127  else if (type == "double") extvars_.push_back(new DoubleExtVar(vname, nanoaod::FlatTable::FloatColumn, varPSet, this->consumesCollector()));
128  else if (type == "uint8") extvars_.push_back(new UInt8ExtVar(vname, nanoaod::FlatTable::UInt8Column, varPSet, this->consumesCollector()));
129  else if (type == "bool") extvars_.push_back(new BoolExtVar(vname, nanoaod::FlatTable::BoolColumn, varPSet, this->consumesCollector()));
130  else throw cms::Exception("Configuration", "unsupported type "+type+" for variable "+vname);
131  }
132  }
133  }
type
Definition: HCALResponse.h:21
T getParameter(std::string const &) const
ValueMapVariable< int > IntExtVar
ValueMapVariable< float > FloatExtVar
std::vector< std::string > getParameterNamesForType(bool trackiness=true) const
Definition: ParameterSet.h:169
ValueMapVariable< bool, uint8_t > BoolExtVar
boost::ptr_vector< ExtVariable > extvars_
ValueMapVariable< double, float > DoubleExtVar
const StringCutObjectSelector< T > cut_
ValueMapVariable< int, uint8_t > UInt8ExtVar
template<typename T >
SimpleFlatTableProducer< T >::~SimpleFlatTableProducer ( )
inlineoverride

Definition at line 135 of file SimpleFlatTableProducer.h.

135 {}

Member Function Documentation

template<typename T >
std::unique_ptr<nanoaod::FlatTable> SimpleFlatTableProducer< T >::fillTable ( const edm::Event iEvent,
const edm::Handle< edm::View< T >> &  prod 
) const
inlineoverride

Definition at line 137 of file SimpleFlatTableProducer.h.

References SimpleFlatTableProducerBase< T, TProd >::extension_, mps_fire::i, gen::n, SimpleFlatTableProducerBase< T, TProd >::VariableBase::name_, hgcalPlots::obj, MillePedeFileConverter_cfg::out, parseEventContent::prod, JetChargeProducer_cfi::var, and SimpleFlatTableProducerBase< T, TProd >::vars_.

137  {
138  std::vector<const T *> selobjs;
139  std::vector<edm::Ptr<T>> selptrs; // for external variables
140  if (singleton_) {
141  assert(prod->size() == 1);
142  selobjs.push_back(& (*prod)[0] );
143  if (!extvars_.empty()) selptrs.emplace_back(prod->ptrAt(0));
144  } else {
145  for (unsigned int i = 0, n = prod->size(); i < n; ++i) {
146  const auto & obj = (*prod)[i];
147  if (cut_(obj)) {
148  selobjs.push_back(&obj);
149  if (!extvars_.empty()) selptrs.emplace_back(prod->ptrAt(i));
150  }
151  if(selobjs.size()>=maxLen_) break;
152  }
153  }
154  auto out = std::make_unique<nanoaod::FlatTable>(selobjs.size(), this->name_, singleton_, this->extension_);
155  for (const auto & var : this->vars_) var.fill(selobjs, *out);
156  for (const auto & var : this->extvars_) var.fill(iEvent, selptrs, *out);
157  return out;
158  }
boost::ptr_vector< ExtVariable > extvars_
const StringCutObjectSelector< T > cut_

Member Data Documentation

template<typename T >
const StringCutObjectSelector<T> SimpleFlatTableProducer< T >::cut_
protected

Definition at line 163 of file SimpleFlatTableProducer.h.

template<typename T >
boost::ptr_vector<ExtVariable> SimpleFlatTableProducer< T >::extvars_
protected

Definition at line 193 of file SimpleFlatTableProducer.h.

template<typename T >
const unsigned int SimpleFlatTableProducer< T >::maxLen_
protected

Definition at line 162 of file SimpleFlatTableProducer.h.

template<typename T >
bool SimpleFlatTableProducer< T >::singleton_
protected

Definition at line 161 of file SimpleFlatTableProducer.h.