CMS 3D CMS Logo

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

#include <MultiAssociation.h>

Classes

class  FastFiller
 
class  LazyFiller
 

Public Types

typedef C Collection
 
typedef boost::sub_range
< const Collection
const_range
 
typedef boost::sub_range
< Collection
range
 

Public Member Functions

bool contains (const edm::ProductID &id) const
 True if there are keys from this product id. More...
 
unsigned int dataSize () const
 Returns the number of values. More...
 
bool empty () const
 Returns true if there are no keys. More...
 
template<typename HandleType >
FastFiller fastFiller (const HandleType &handle)
 
const_range get (const edm::ProductID &id, unsigned int t) const
 Get a range of values for this product id and index (fast) More...
 
range get (const edm::ProductID &id, unsigned int t)
 Get a range of values for this product id and index (fast) More...
 
template<typename RefKey >
Collection getValues (const RefKey &r) const
 Get a copy of the values for this key (slow!) More...
 
Collection getValues (const edm::ProductID &id, unsigned int t) const
 Get a copy of the values for this product id and index (slow!) More...
 
template<typename HandleType >
LazyFiller lazyFiller (const HandleType &h, bool fillOnExit=false)
 
 MultiAssociation ()
 
template<typename RefKey >
const_range operator[] (const RefKey &r) const
 Get a range of values for this key (fast) More...
 
template<typename RefKey >
range operator[] (const RefKey &r)
 Get a range of values for this key (fast) More...
 
unsigned int size () const
 Returns the number of keys. More...
 
void swap (MultiAssociation &other)
 

Static Public Member Functions

static short Class_Version ()
 

Private Types

typedef
helper::IndexRangeAssociation 
Indices
 

Private Attributes

Collection data_
 
Indices indices_
 

Friends

class FastFiller
 
class LazyFiller
 

Detailed Description

template<typename C>
class edm::MultiAssociation< C >

Definition at line 153 of file MultiAssociation.h.

Member Typedef Documentation

template<typename C>
typedef C edm::MultiAssociation< C >::Collection

Definition at line 155 of file MultiAssociation.h.

template<typename C>
typedef boost::sub_range<const Collection> edm::MultiAssociation< C >::const_range

Definition at line 156 of file MultiAssociation.h.

template<typename C>
typedef helper::IndexRangeAssociation edm::MultiAssociation< C >::Indices
private

Definition at line 298 of file MultiAssociation.h.

template<typename C>
typedef boost::sub_range<Collection> edm::MultiAssociation< C >::range

Definition at line 157 of file MultiAssociation.h.

Constructor & Destructor Documentation

template<typename C>
edm::MultiAssociation< C >::MultiAssociation ( )
inline

Definition at line 159 of file MultiAssociation.h.

159 {}

Member Function Documentation

template<typename C>
static short edm::MultiAssociation< C >::Class_Version ( )
inlinestatic

Definition at line 295 of file MultiAssociation.h.

297 :
298  typedef helper::IndexRangeAssociation Indices;
helper::IndexRangeAssociation Indices
template<typename C>
bool edm::MultiAssociation< C >::contains ( const edm::ProductID id) const
inline

True if there are keys from this product id.

Definition at line 180 of file MultiAssociation.h.

References edm::helper::IndexRangeAssociation::contains(), and edm::MultiAssociation< C >::indices_.

Referenced by LumiList.LumiList::__contains__().

180 { return indices_.contains(id); }
bool contains(ProductID id) const
True if this IndexRangeAssociation has info for this product id.
template<typename C>
unsigned int edm::MultiAssociation< C >::dataSize ( ) const
inline

Returns the number of values.

Definition at line 197 of file MultiAssociation.h.

References edm::MultiAssociation< C >::data_.

197 { return data_.size(); }
template<typename C>
bool edm::MultiAssociation< C >::empty ( ) const
inline

Returns true if there are no keys.

Definition at line 203 of file MultiAssociation.h.

References edm::helper::IndexRangeAssociation::empty(), and edm::MultiAssociation< C >::indices_.

203 { return indices_.empty(); }
bool empty() const
True if it&#39;s empty (no keys)
template<typename C>
template<typename HandleType >
FastFiller edm::MultiAssociation< C >::fastFiller ( const HandleType &  handle)
inline

Definition at line 238 of file MultiAssociation.h.

References edm::MultiAssociation< C >::FastFiller.

238  {
239  return FastFiller(*this, handle);
240  }
tuple handle
Definition: patZpeak.py:23
template<typename C >
MultiAssociation< C >::const_range edm::MultiAssociation< C >::get ( const edm::ProductID id,
unsigned int  t 
) const

Get a range of values for this product id and index (fast)

Definition at line 312 of file MultiAssociation.h.

References edm::MultiAssociation< C >::data_, edm::helper::IndexRangeAssociation::get(), and edm::MultiAssociation< C >::indices_.

Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), submitPVValidationJobs.BetterConfigParser::__updateDict(), util.rrapi.RRApi::columns(), rrapi.RRApi::columns(), rrapi.RRApi::count(), util.rrapi.RRApi::count(), rrapi.RRApi::data(), util.rrapi.RRApi::data(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), betterConfigParser.BetterConfigParser::getResultingSection(), submitPVValidationJobs.BetterConfigParser::getResultingSection(), util.rrapi.RRApi::report(), rrapi.RRApi::report(), rrapi.RRApi::reports(), util.rrapi.RRApi::reports(), rrapi.RRApi::tables(), util.rrapi.RRApi::tables(), util.rrapi.RRApi::tags(), rrapi.RRApi::tags(), rrapi.RRApi::templates(), util.rrapi.RRApi::templates(), util.rrapi.RRApi::workspaces(), and rrapi.RRApi::workspaces().

312  {
313  Indices::range idxrange = indices_.get(id, key);
314  return const_range(data_.begin() + idxrange.first, data_.begin() + idxrange.second);
315  }
boost::sub_range< const Collection > const_range
tuple key
prepare the HTCondor submission files and eventually submit them
std::pair< unsigned int, unsigned int > range
range get(const edm::ProductID &id, unsigned int t) const
template<typename C >
MultiAssociation< C >::range edm::MultiAssociation< C >::get ( const edm::ProductID id,
unsigned int  t 
)

Get a range of values for this product id and index (fast)

Definition at line 318 of file MultiAssociation.h.

References edm::MultiAssociation< C >::data_, edm::helper::IndexRangeAssociation::get(), and edm::MultiAssociation< C >::indices_.

Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), submitPVValidationJobs.BetterConfigParser::__updateDict(), util.rrapi.RRApi::columns(), rrapi.RRApi::columns(), rrapi.RRApi::count(), util.rrapi.RRApi::count(), rrapi.RRApi::data(), util.rrapi.RRApi::data(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), betterConfigParser.BetterConfigParser::getResultingSection(), submitPVValidationJobs.BetterConfigParser::getResultingSection(), util.rrapi.RRApi::report(), rrapi.RRApi::report(), rrapi.RRApi::reports(), util.rrapi.RRApi::reports(), rrapi.RRApi::tables(), util.rrapi.RRApi::tables(), util.rrapi.RRApi::tags(), rrapi.RRApi::tags(), rrapi.RRApi::templates(), util.rrapi.RRApi::templates(), util.rrapi.RRApi::workspaces(), and rrapi.RRApi::workspaces().

318  {
319  Indices::range idxrange = indices_.get(id, key);
320  return range(data_.begin() + idxrange.first, data_.begin() + idxrange.second);
321  }
boost::sub_range< Collection > range
tuple key
prepare the HTCondor submission files and eventually submit them
std::pair< unsigned int, unsigned int > range
range get(const edm::ProductID &id, unsigned int t) const
template<typename C>
template<typename RefKey >
Collection edm::MultiAssociation< C >::getValues ( const RefKey &  r) const
inline

Get a copy of the values for this key (slow!)

Definition at line 175 of file MultiAssociation.h.

175  {
176  return getValues(r.id(), r.key());
177  }
Collection getValues(const RefKey &r) const
Get a copy of the values for this key (slow!)
template<typename C >
MultiAssociation< C >::Collection edm::MultiAssociation< C >::getValues ( const edm::ProductID id,
unsigned int  t 
) const

Get a copy of the values for this product id and index (slow!)

Definition at line 324 of file MultiAssociation.h.

References gpuClustering::id, submitPVResolutionJobs::key, runTheMatrix::ret, and makeHLTPrescaleTable::values.

325  {
326  Collection ret;
327  const_range values = get(id, key);
328  for (typename const_range::const_iterator it = values.begin(), ed = values.end(); it != ed; ++it) {
329  ret.push_back(*it);
330  }
331  return ret;
332  }
boost::sub_range< const Collection > const_range
tuple ret
prodAgent to be discontinued
uint16_t *__restrict__ id
tuple key
prepare the HTCondor submission files and eventually submit them
template<typename C>
template<typename HandleType >
LazyFiller edm::MultiAssociation< C >::lazyFiller ( const HandleType &  h,
bool  fillOnExit = false 
)
inline

Definition at line 290 of file MultiAssociation.h.

References edm::MultiAssociation< C >::LazyFiller.

290  {
291  return LazyFiller(*this, h, fillOnExit);
292  }
The Signals That Services Can Subscribe To This is based on ActivityRegistry h
Helper function to determine trigger accepts.
Definition: Activities.doc:4
template<typename C>
template<typename RefKey >
const_range edm::MultiAssociation< C >::operator[] ( const RefKey &  r) const
inline

Get a range of values for this key (fast)

Definition at line 163 of file MultiAssociation.h.

163  {
164  return get(r.id(), r.key());
165  }
template<typename C>
template<typename RefKey >
range edm::MultiAssociation< C >::operator[] ( const RefKey &  r)
inline

Get a range of values for this key (fast)

Definition at line 169 of file MultiAssociation.h.

169  {
170  return get(r.id(), r.key());
171  }
template<typename C>
unsigned int edm::MultiAssociation< C >::size ( void  ) const
inline

Returns the number of keys.

Definition at line 200 of file MultiAssociation.h.

References edm::MultiAssociation< C >::indices_, and edm::helper::IndexRangeAssociation::size().

Referenced by ntupleDataFormat._Collection::__iter__(), and ntupleDataFormat._Collection::__len__().

200 { return indices_.size(); }
unsigned int size() const
Size of this collection (number of keys)
template<typename C>
void edm::MultiAssociation< C >::swap ( MultiAssociation< C > &  other)
inline

Definition at line 191 of file MultiAssociation.h.

References edm::MultiAssociation< C >::data_, edm::MultiAssociation< C >::indices_, and edm::helper::IndexRangeAssociation::swap().

191  {
192  indices_.swap(other.indices_);
193  data_.swap(other.data_);
194  }
void swap(IndexRangeAssociation &other)

Friends And Related Function Documentation

template<typename C>
friend class FastFiller
friend

Definition at line 235 of file MultiAssociation.h.

Referenced by edm::MultiAssociation< C >::fastFiller().

template<typename C>
friend class LazyFiller
friend

Definition at line 287 of file MultiAssociation.h.

Referenced by edm::MultiAssociation< C >::lazyFiller().

Member Data Documentation

template<typename C>
Collection edm::MultiAssociation< C >::data_
private
template<typename C>
Indices edm::MultiAssociation< C >::indices_
private