CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Attributes
DigiContainerIterator< IndexType, DigiType > Class Template Reference

#include <MuonDigiCollection.h>

Public Types

typedef std::map< IndexType, std::vector< DigiType > > BaseContainer
 
typedef BaseContainer::const_iterator BaseIterator
 
typedef DigiRangeIterator::difference_type difference_type
 
typedef std::vector< DigiType >::const_iterator DigiRangeIterator
 
typedef DigiRangeIterator::iterator_category iterator_category
 
typedef void pointer
 
typedef value_type reference
 
typedef std::pair< IndexType, std::pair< DigiRangeIterator, DigiRangeIterator > > value_type
 

Public Member Functions

 DigiContainerIterator (void)
 
 DigiContainerIterator (BaseIterator i)
 
bool operator!= (const DigiContainerIterator &x) const
 
value_type operator* (void) const
 
DigiContainerIterator operator++ (int)
 
DigiContainerIteratoroperator++ (void)
 
bool operator== (const DigiContainerIterator &x) const
 

Private Attributes

BaseIterator base_
 

Detailed Description

template<typename IndexType, typename DigiType>
class DigiContainerIterator< IndexType, DigiType >

Definition at line 33 of file MuonDigiCollection.h.

Member Typedef Documentation

template<typename IndexType, typename DigiType>
typedef std::map<IndexType, std::vector<DigiType> > DigiContainerIterator< IndexType, DigiType >::BaseContainer

Definition at line 36 of file MuonDigiCollection.h.

template<typename IndexType, typename DigiType>
typedef BaseContainer::const_iterator DigiContainerIterator< IndexType, DigiType >::BaseIterator

Definition at line 37 of file MuonDigiCollection.h.

template<typename IndexType, typename DigiType>
typedef DigiRangeIterator::difference_type DigiContainerIterator< IndexType, DigiType >::difference_type

Definition at line 44 of file MuonDigiCollection.h.

template<typename IndexType, typename DigiType>
typedef std::vector<DigiType>::const_iterator DigiContainerIterator< IndexType, DigiType >::DigiRangeIterator

Definition at line 35 of file MuonDigiCollection.h.

template<typename IndexType, typename DigiType>
typedef DigiRangeIterator::iterator_category DigiContainerIterator< IndexType, DigiType >::iterator_category

Definition at line 45 of file MuonDigiCollection.h.

template<typename IndexType, typename DigiType>
typedef void DigiContainerIterator< IndexType, DigiType >::pointer

Definition at line 43 of file MuonDigiCollection.h.

template<typename IndexType, typename DigiType>
typedef value_type DigiContainerIterator< IndexType, DigiType >::reference

Definition at line 42 of file MuonDigiCollection.h.

template<typename IndexType, typename DigiType>
typedef std::pair<IndexType, std::pair<DigiRangeIterator, DigiRangeIterator> > DigiContainerIterator< IndexType, DigiType >::value_type

Definition at line 41 of file MuonDigiCollection.h.

Constructor & Destructor Documentation

template<typename IndexType, typename DigiType>
DigiContainerIterator< IndexType, DigiType >::DigiContainerIterator ( void  )
inline

Definition at line 47 of file MuonDigiCollection.h.

Referenced by DigiContainerIterator< IndexType, DigiType >::operator++().

47 {}
template<typename IndexType, typename DigiType>
DigiContainerIterator< IndexType, DigiType >::DigiContainerIterator ( BaseIterator  i)
inline

Definition at line 48 of file MuonDigiCollection.h.

48 : base_ (i) {}

Member Function Documentation

template<typename IndexType, typename DigiType>
bool DigiContainerIterator< IndexType, DigiType >::operator!= ( const DigiContainerIterator< IndexType, DigiType > &  x) const
inline

Definition at line 62 of file MuonDigiCollection.h.

References DigiContainerIterator< IndexType, DigiType >::base_.

63  { return x.base_ != base_; }
template<typename IndexType, typename DigiType>
value_type DigiContainerIterator< IndexType, DigiType >::operator* ( void  ) const
inline

Definition at line 65 of file MuonDigiCollection.h.

References DigiContainerIterator< IndexType, DigiType >::base_.

66  {
67  return std::make_pair(base_->first,
68  std::make_pair(base_->second.begin(),
69  base_->second.end()));
70  }
template<typename IndexType, typename DigiType>
DigiContainerIterator DigiContainerIterator< IndexType, DigiType >::operator++ ( int  )
inline
template<typename IndexType, typename DigiType>
DigiContainerIterator& DigiContainerIterator< IndexType, DigiType >::operator++ ( void  )
inline

Definition at line 56 of file MuonDigiCollection.h.

References DigiContainerIterator< IndexType, DigiType >::base_.

57  { ++base_; return *this; }
template<typename IndexType, typename DigiType>
bool DigiContainerIterator< IndexType, DigiType >::operator== ( const DigiContainerIterator< IndexType, DigiType > &  x) const
inline

Definition at line 59 of file MuonDigiCollection.h.

References DigiContainerIterator< IndexType, DigiType >::base_.

60  { return x.base_ == base_; }

Member Data Documentation

template<typename IndexType, typename DigiType>
BaseIterator DigiContainerIterator< IndexType, DigiType >::base_
private