CMS 3D CMS Logo

Classes | Public Types | Public Member Functions | Private Attributes

edm::IDVectorMap< ID, C, P > Class Template Reference

#include <IDVectorMap.h>

List of all members.

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
template<typename M >
match_iterator< M > end (const M &m) const
const_iterator end () 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.

{ }

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().

                                 {
      return const_iterator(map_.end(), map_.begin(), map_.begin()->second.begin());
    }
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_.

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

Definition at line 66 of file IDVectorMap.h.

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

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

                               {
      return const_iterator(map_.end());
    }
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_.

                                             {
      return match_iterator<M>(m, map_.end());
    }
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_.

                           {
      container_iterator begin, end;
      map_iterator i = map_.find(id);
      if (i != map_.end()) { 
        begin = i->second.begin();
        end = i->second.end();
      } else {
        begin = end;
      }
      return range(begin, end);
    }
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_.

{ 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_.

{ 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_.

{ return map_.size(); }
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, and edm::IDVectorMap< ID, C, P >::map_.

                                         {
      C & c = map_[ id ];
      for(CI i = begin; i != end; ++i)
        c.push_back(P::clone(*i));
    }
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(), and edm::IDVectorMap< ID, C, P >::map_.

                                             {
      map_[ id ].push_back(P::clone(t));
    }
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.

                                                                   {
    IDVectorMap<ID, C, P> temp(rhs);
    this->swap(temp);
    return *this;
  }
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().

                                                           {
    collection_.swap(other.collection_);
    map_.swap(other.map_);
  }

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]