CMS 3D CMS Logo

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

#include <IDVectorMap.h>

Classes

struct  const_iterator
 
struct  id_iterator
 
struct  match_iterator
 
struct  range
 

Public Types

typedef C::const_iterator container_iterator
 
typedef std::map< ID, C > map
 
typedef map::const_iterator map_iterator
 
typedef C::value_type value_type
 

Public Member Functions

const_iterator begin () const
 
template<typename M >
match_iterator< M > begin (const M &m) const
 
const_iterator end () const
 
template<typename M >
match_iterator< M > end (const M &m) const
 
range get (ID id) const
 
id_iterator id_begin () const
 
id_iterator id_end () const
 
size_t id_size () const
 
 IDVectorMap ()
 
void insert (ID id, const value_type &t)
 
template<typename CI >
void insert (ID id, CI begin, CI end)
 
IDVectorMapoperator= (IDVectorMap const &rhs)
 
void swap (IDVectorMap &other)
 

Private Attributes

collection_
 
map map_
 

Detailed Description

template<typename ID, typename C, typename P>
class edm::IDVectorMap< ID, C, P >

Definition at line 9 of file IDVectorMap.h.

Member Typedef Documentation

template<typename ID, typename C, typename P>
typedef C::const_iterator edm::IDVectorMap< ID, C, P >::container_iterator

Definition at line 12 of file IDVectorMap.h.

template<typename ID, typename C, typename P>
typedef std::map<ID, C> edm::IDVectorMap< ID, C, P >::map

Definition at line 13 of file IDVectorMap.h.

template<typename ID, typename C, typename P>
typedef map::const_iterator edm::IDVectorMap< ID, C, P >::map_iterator

Definition at line 14 of file IDVectorMap.h.

template<typename ID, typename C, typename P>
typedef C::value_type edm::IDVectorMap< ID, C, P >::value_type

Definition at line 11 of file IDVectorMap.h.

Constructor & Destructor Documentation

template<typename ID, typename C, typename P>
edm::IDVectorMap< ID, C, P >::IDVectorMap ( )
inline

Definition at line 62 of file IDVectorMap.h.

62 { }

Member Function Documentation

template<typename ID, typename C, typename P>
const_iterator edm::IDVectorMap< ID, C, P >::begin ( void  ) const
inline

Definition at line 63 of file IDVectorMap.h.

References edm::IDVectorMap< ID, C, P >::map_.

Referenced by edm::IDVectorMap< ID, C, P >::get().

63  {
64  return const_iterator(map_.end(), map_.begin(), map_.begin()->second.begin());
65  }
template<typename ID, typename C, typename P>
template<typename M >
match_iterator<M> edm::IDVectorMap< ID, C, P >::begin ( const M &  m) const
inline

Definition at line 136 of file IDVectorMap.h.

References m, and edm::IDVectorMap< ID, C, P >::map_.

136  {
137  return match_iterator<M>(m, map_.end(), map_.begin(), map_.begin()->second.begin());
138  }
template<typename ID, typename C, typename P>
const_iterator edm::IDVectorMap< ID, C, P >::end ( void  ) const
inline
template<typename ID, typename C, typename P>
template<typename M >
match_iterator<M> edm::IDVectorMap< ID, C, P >::end ( const M &  m) const
inline

Definition at line 140 of file IDVectorMap.h.

References m, and edm::IDVectorMap< ID, C, P >::map_.

Referenced by Types.LuminosityBlockRange::cppID(), and Types.EventRange::cppID().

140  {
141  return match_iterator<M>(m, map_.end());
142  }
template<typename ID, typename C, typename P>
range edm::IDVectorMap< ID, C, P >::get ( ID  id) const
inline

Definition at line 84 of file IDVectorMap.h.

References edm::IDVectorMap< ID, C, P >::begin(), edm::IDVectorMap< ID, C, P >::end(), i, and edm::IDVectorMap< ID, C, P >::map_.

Referenced by Options.Options::__getitem__(), betterConfigParser.BetterConfigParser::__updateDict(), betterConfigParser.BetterConfigParser::getCompares(), betterConfigParser.BetterConfigParser::getGeneral(), and betterConfigParser.BetterConfigParser::getResultingSection().

84  {
86  map_iterator i = map_.find(id);
87  if (i != map_.end()) {
88  begin = i->second.begin();
89  end = i->second.end();
90  } else {
91  begin = end;
92  }
93  return range(begin, end);
94  }
int i
Definition: DBlmapReader.cc:9
const_iterator begin() const
Definition: IDVectorMap.h:63
const_iterator end() const
Definition: IDVectorMap.h:66
C::const_iterator container_iterator
Definition: IDVectorMap.h:12
map::const_iterator map_iterator
Definition: IDVectorMap.h:14
template<typename ID, typename C, typename P>
id_iterator edm::IDVectorMap< ID, C, P >::id_begin ( ) const
inline

Definition at line 162 of file IDVectorMap.h.

References edm::IDVectorMap< ID, C, P >::map_.

162 { return id_iterator(map_.begin()); }
template<typename ID, typename C, typename P>
id_iterator edm::IDVectorMap< ID, C, P >::id_end ( ) const
inline

Definition at line 163 of file IDVectorMap.h.

References edm::IDVectorMap< ID, C, P >::map_.

163 { return id_iterator(map_.end()); }
template<typename ID, typename C, typename P>
size_t edm::IDVectorMap< ID, C, P >::id_size ( ) const
inline

Definition at line 164 of file IDVectorMap.h.

References edm::IDVectorMap< ID, C, P >::map_.

164 { return map_.size(); }
template<typename ID, typename C, typename P>
void edm::IDVectorMap< ID, C, P >::insert ( ID  id,
const value_type t 
)
inline

Definition at line 69 of file IDVectorMap.h.

References clone(), errorMatrix2Lands_multiChannel::id, and edm::IDVectorMap< ID, C, P >::map_.

Referenced by BeautifulSoup.PageElement::_invert().

69  {
70  map_[ id ].push_back(P::clone(t));
71  }
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
template<typename ID, typename C, typename P>
template<typename CI >
void edm::IDVectorMap< ID, C, P >::insert ( ID  id,
CI  begin,
CI  end 
)
inline

Definition at line 73 of file IDVectorMap.h.

References trackerHits::c, funct::C, clone(), edm::IDVectorMap< ID, C, P >::end(), i, errorMatrix2Lands_multiChannel::id, and edm::IDVectorMap< ID, C, P >::map_.

Referenced by BeautifulSoup.PageElement::_invert().

73  {
74  C & c = map_[ id ];
75  for(CI i = begin; i != end; ++i)
76  c.push_back(P::clone(*i));
77  }
int i
Definition: DBlmapReader.cc:9
const_iterator begin() const
Definition: IDVectorMap.h:63
const_iterator end() const
Definition: IDVectorMap.h:66
TEveGeoShape * clone(const TEveElement *element, TEveElement *parent)
Definition: eve_macros.cc:135
template<typename ID , typename C , typename P >
IDVectorMap< ID, C, P > & edm::IDVectorMap< ID, C, P >::operator= ( IDVectorMap< ID, C, P > const &  rhs)
inline

Definition at line 183 of file IDVectorMap.h.

References edm::swap(), and groupFilesInBlocks::temp.

183  {
184  IDVectorMap<ID, C, P> temp(rhs);
185  this->swap(temp);
186  return *this;
187  }
void swap(IDVectorMap &other)
Definition: IDVectorMap.h:175
template<typename ID , typename C , typename P >
void edm::IDVectorMap< ID, C, P >::swap ( IDVectorMap< ID, C, P > &  other)
inline

Definition at line 175 of file IDVectorMap.h.

References edm::IDVectorMap< ID, C, P >::collection_, and edm::IDVectorMap< ID, C, P >::map_.

Referenced by edm::swap().

175  {
176  collection_.swap(other.collection_);
177  map_.swap(other.map_);
178  }

Member Data Documentation

template<typename ID, typename C, typename P>
C edm::IDVectorMap< ID, C, P >::collection_
private

Definition at line 168 of file IDVectorMap.h.

Referenced by edm::IDVectorMap< ID, C, P >::swap().

template<typename ID, typename C, typename P>
map edm::IDVectorMap< ID, C, P >::map_
private