CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Types | Public Member Functions | Static Public Member Functions
FWItemDetSetAccessor< C, COLL, V > Class Template Reference

#include <FWItemRandomAccessor.h>

Inheritance diagram for FWItemDetSetAccessor< C, COLL, V >:
FWItemRandomAccessorBase FWItemAccessorBase

Public Types

typedef COLL collection_type
 
typedef V collection_value_type
 
typedef C container_type
 

Public Member Functions

template<>
const std::string & classPurpose ()
 
template<>
const std::string & classPurpose ()
 
template<>
const std::string & classRegisterTypeName ()
 
template<>
const std::string & classRegisterTypeName ()
 
template<>
const std::string & classTypeName ()
 
template<>
const std::string & classTypeName ()
 
 FWItemDetSetAccessor (const TClass *iClass)
 
const void * modelData (int iIndex) const
 
const std::string & purpose () const
 
unsigned int size () const
 
const std::string & typeName () const
 
- Public Member Functions inherited from FWItemRandomAccessorBase
const void * data () const
 
bool isCollection () const
 
const TClass * modelType () const
 
virtual void reset ()
 
void setData (const edm::ObjectWithDict &)
 override if id of an object should be different than the index More...
 
const TClass * type () const
 
virtual ~FWItemRandomAccessorBase ()
 
- Public Member Functions inherited from FWItemAccessorBase
 FWItemAccessorBase ()
 
virtual ~FWItemAccessorBase ()
 

Static Public Member Functions

static const std::string & classPurpose ()
 
static const std::string & classRegisterTypeName ()
 
static const std::string & classTypeName ()
 

Additional Inherited Members

- Protected Member Functions inherited from FWItemRandomAccessorBase
 FWItemRandomAccessorBase (const TClass *type, const type_info &modelTypeName)
 
void * getDataPtr () const
 
- Protected Attributes inherited from FWItemRandomAccessorBase
void * m_data
 
const TClass * m_modelType
 
const TClass * m_type
 

Detailed Description

template<class C, class COLL = typename C::value_type, class V = typename COLL::value_type>
class FWItemDetSetAccessor< C, COLL, V >

Generic class for creating accessors for containers which are implemented as a container of containers. This for example includes DetSetVector hence the name. Both the outer and the inner containers must follow the Random Access Container model and in particular must have a size() method. The outer collection must be iterable, while the inner collections must have an array subscript operator.

Definition at line 108 of file FWItemRandomAccessor.h.

Member Typedef Documentation

template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
typedef COLL FWItemDetSetAccessor< C, COLL, V >::collection_type

Definition at line 112 of file FWItemRandomAccessor.h.

template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
typedef V FWItemDetSetAccessor< C, COLL, V >::collection_value_type

Definition at line 113 of file FWItemRandomAccessor.h.

template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
typedef C FWItemDetSetAccessor< C, COLL, V >::container_type

Definition at line 111 of file FWItemRandomAccessor.h.

Constructor & Destructor Documentation

template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
FWItemDetSetAccessor< C, COLL, V >::FWItemDetSetAccessor ( const TClass *  iClass)
inline

Definition at line 115 of file FWItemRandomAccessor.h.

117  {}
FWItemRandomAccessorBase(const TClass *type, const type_info &modelTypeName)

Member Function Documentation

template<>
const std::string & FWItemDetSetAccessor< edm::DetSetVector< SiStripDigi > >::classPurpose ( )

Definition at line 35 of file FWItemTrackAccessors.cc.

template<>
const std::string & FWItemDetSetAccessor< edm::DetSetVector< PixelDigi > >::classPurpose ( )

Definition at line 36 of file FWItemTrackAccessors.cc.

template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
static const std::string& FWItemDetSetAccessor< C, COLL, V >::classPurpose ( )
static
template<>
const std::string & FWItemDetSetAccessor< edm::DetSetVector< SiStripDigi > >::classRegisterTypeName ( )

Definition at line 35 of file FWItemTrackAccessors.cc.

template<>
const std::string & FWItemDetSetAccessor< edm::DetSetVector< PixelDigi > >::classRegisterTypeName ( )

Definition at line 36 of file FWItemTrackAccessors.cc.

template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
static const std::string& FWItemDetSetAccessor< C, COLL, V >::classRegisterTypeName ( )
static
template<>
const std::string & FWItemDetSetAccessor< edm::DetSetVector< SiStripDigi > >::classTypeName ( )

Definition at line 35 of file FWItemTrackAccessors.cc.

template<>
const std::string & FWItemDetSetAccessor< edm::DetSetVector< PixelDigi > >::classTypeName ( )

Definition at line 36 of file FWItemTrackAccessors.cc.

template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
static const std::string& FWItemDetSetAccessor< C, COLL, V >::classTypeName ( )
static
template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
const void* FWItemDetSetAccessor< C, COLL, V >::modelData ( int  iIndex) const
inlinevirtual

Implements FWItemAccessorBase.

Definition at line 121 of file FWItemRandomAccessor.h.

References EnergyCorrector::c, FWItemRandomAccessorBase::getDataPtr(), i, and FWItemDetSetAccessor< C, COLL, V >::size().

122  {
123  if (!getDataPtr())
124  return 0;
125  const container_type *c = reinterpret_cast<const container_type*>(getDataPtr());
126  size_t collectionOffset = 0;
127  for (typename container_type::const_iterator ci = c->begin(), ce = c->end(); ci != ce; ++ci)
128  {
129  size_t i = iIndex - collectionOffset;
130  if (i < ci->size())
131  return &(ci->operator[](i));
132  collectionOffset += ci->size();
133  }
134 
135  return 0;
136  }
int i
Definition: DBlmapReader.cc:9
unsigned int size() const
template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
const std::string& FWItemDetSetAccessor< C, COLL, V >::purpose ( ) const
inline

Definition at line 119 of file FWItemRandomAccessor.h.

122 {
template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
unsigned int FWItemDetSetAccessor< C, COLL, V >::size ( void  ) const
inlinevirtual

Implements FWItemAccessorBase.

Definition at line 138 of file FWItemRandomAccessor.h.

References EnergyCorrector::c, alignCSCRings::e, FWItemRandomAccessorBase::getDataPtr(), and i.

Referenced by FWItemDetSetAccessor< C, COLL, V >::modelData().

139  {
140  if (!getDataPtr())
141  return 0;
142  const container_type *c = reinterpret_cast<const container_type*>(getDataPtr());
143  size_t finalSize = 0;
144 
145  for (typename container_type::const_iterator i = c->begin(), e = c->end(); i != e; ++i)
146  finalSize += i->size();
147 
148  return finalSize;
149  }
int i
Definition: DBlmapReader.cc:9
template<class C , class COLL = typename C::value_type, class V = typename COLL::value_type>
const std::string& FWItemDetSetAccessor< C, COLL, V >::typeName ( ) const
inline

Definition at line 119 of file FWItemRandomAccessor.h.

122 {