CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Static Public Attributes
ESDigiCollection Class Reference

#include <EcalDigiCollections.h>

Inheritance diagram for ESDigiCollection:
EcalDigiCollection edm::DataFrameContainer

Public Types

typedef Digi::key_type DetId
 
typedef ESDataFrame Digi
 
typedef edm::DataFrameContainer::size_type size_type
 
- Public Types inherited from EcalDigiCollection
typedef edm::DataFrameContainer::size_type size_type
 
- Public Types inherited from edm::DataFrameContainer
typedef std::vector< data_type >::const_iterator const_DataIter
 
typedef std::vector< id_type >::const_iterator const_IdIter
 
typedef boost::transform_iterator< IterHelp, boost::counting_iterator< int > > const_iterator
 
typedef std::pair< const_IdIter, const_DataIterconst_IterPair
 
typedef unsigned short data_type
 
typedef std::vector< data_typeDataContainer
 
typedef std::vector< data_type >::iterator DataIter
 
typedef unsigned int id_type
 
typedef std::vector< id_typeIdContainer
 
typedef std::vector< id_type >::iterator IdIter
 
typedef std::pair< IdIter, DataIterIterPair
 
typedef unsigned int size_type
 

Public Member Functions

 ESDigiCollection (size_type istride=NSAMPLE)
 
void push_back (unsigned int i)
 
void push_back (const Digi &digi)
 
void swap (ESDigiCollection &other)
 
- Public Member Functions inherited from EcalDigiCollection
 EcalDigiCollection (size_type istride=MAXSAMPLES, int isubdet=0)
 
void swap (DataFrameContainer &other)
 
void swap (DataFrameContainer::IdContainer &otherIds, DataFrameContainer::DataContainer &otherData)
 
- Public Member Functions inherited from edm::DataFrameContainer
DataFrame back ()
 
const_iterator begin () const
 The iterator returned can not safely be used across threads. More...
 
DataContainer const & data () const
 
 DataFrameContainer ()
 
 DataFrameContainer (size_t istride, int isubdet=0, size_t isize=0)
 
bool empty () const
 
const_iterator end () const
 
const_iterator find (id_type i) const
 
data_type const * frame (size_t cell) const
 
id_type id (size_t cell) const
 
IdContainer const & ids () const
 
data_type operator() (size_t cell, size_t frame) const
 
DataFrame operator[] (size_t i)
 
DataFrame operator[] (size_t i) const
 
IterPair pair (size_t i)
 
const_IterPair pair (size_t i) const
 
void pop_back ()
 
void push_back (id_type iid, data_type const *idata)
 
void push_back (id_type iid)
 
void reserve (size_t isize)
 
void resize (size_t isize)
 
void set_back (id_type iid, data_type const *idata)
 
void set_back (id_type iid)
 
void set_back (data_type const *idata)
 
size_type size () const
 
void sort ()
 
size_type stride () const
 
int subdetId () const
 
void swap (DataFrameContainer &rh)
 
void swap (IdContainer &iic, DataContainer &idc)
 

Static Public Attributes

static const size_type NSAMPLE = ESDataFrame::MAXSAMPLES
 
- Static Public Attributes inherited from EcalDigiCollection
static const size_type MAXSAMPLES = ecalPh1::sampleSize
 

Detailed Description

Definition at line 93 of file EcalDigiCollections.h.

Member Typedef Documentation

◆ DetId

Definition at line 97 of file EcalDigiCollections.h.

◆ Digi

Definition at line 96 of file EcalDigiCollections.h.

◆ size_type

Definition at line 95 of file EcalDigiCollections.h.

Constructor & Destructor Documentation

◆ ESDigiCollection()

ESDigiCollection::ESDigiCollection ( size_type  istride = NSAMPLE)
inline

Definition at line 100 of file EcalDigiCollections.h.

100 : EcalDigiCollection(istride, EcalPreshower) {}
EcalDigiCollection(size_type istride=MAXSAMPLES, int isubdet=0)

Member Function Documentation

◆ push_back() [1/2]

void ESDigiCollection::push_back ( unsigned int  i)
inline

Definition at line 103 of file EcalDigiCollections.h.

References mps_fire::i, and push_back().

Referenced by ESUnpacker::word2digi().

deadvectors [0] push_back({0.0175431, 0.538005, 6.80997, 13.29})

◆ push_back() [2/2]

void ESDigiCollection::push_back ( const Digi digi)
inline

Definition at line 105 of file EcalDigiCollections.h.

References mps_fire::i, ESDataFrame::id(), NSAMPLE, hltrates_dqm_sourceclient-live_cfg::offset, and edm::DataFrameContainer::push_back().

105  {
106  uint16_t esdata[NSAMPLE];
107  for (unsigned int i(0); i != NSAMPLE; ++i) {
108  static const int offset(65536); // for int16 to uint16
109  const int16_t dshort(digi[i].raw());
110  const int dint((int)dshort + // add offset for uint16 conversion
111  ((int16_t)0 > dshort ? offset : (int)0));
112  esdata[i] = dint;
113  }
114  EcalDigiCollection::push_back(digi.id()(), esdata);
115  }
static const size_type NSAMPLE
void push_back(id_type iid, data_type const *idata)

◆ swap()

void ESDigiCollection::swap ( ESDigiCollection other)
inline

Definition at line 101 of file EcalDigiCollections.h.

References EcalDigiCollection::swap().

Referenced by swap().

101 { this->EcalDigiCollection::swap(other); }
void swap(DataFrameContainer &other)

Member Data Documentation

◆ NSAMPLE

const size_type ESDigiCollection::NSAMPLE = ESDataFrame::MAXSAMPLES
static

Definition at line 99 of file EcalDigiCollections.h.

Referenced by push_back().