#include <CondFormats/EcalObjects/interface/EcalTPGGroups.h>
Public Types | |
typedef std::map< uint32_t, uint32_t > | EcalTPGGroupsMap |
typedef std::map< uint32_t, uint32_t >::const_iterator | EcalTPGGroupsMapItr |
Public Member Functions | |
EcalTPGGroups () | |
const EcalTPGGroupsMap & | getMap () const |
void | setValue (const uint32_t &rawId, const uint32_t &ObjectId) |
~EcalTPGGroups () | |
Protected Attributes | |
EcalTPGGroupsMap | map_ |
Definition at line 17 of file EcalTPGGroups.h.
typedef std::map<uint32_t, uint32_t> EcalTPGGroups::EcalTPGGroupsMap |
Definition at line 20 of file EcalTPGGroups.h.
typedef std::map<uint32_t, uint32_t>::const_iterator EcalTPGGroups::EcalTPGGroupsMapItr |
Definition at line 21 of file EcalTPGGroups.h.
EcalTPGGroups::EcalTPGGroups | ( | ) |
EcalTPGGroups::~EcalTPGGroups | ( | ) |
const EcalTPGGroupsMap& EcalTPGGroups::getMap | ( | ) | const [inline] |
Definition at line 26 of file EcalTPGGroups.h.
References map_.
Referenced by EcalTPGScale::getLinearizedTPG(), EcalFEtoDigi::getLUT(), EcalTPGScale::getTPGInADC(), EcalTPCondAnalyzer::printSTRIP(), EcalTPCondAnalyzer::printTOWEREB(), and EcalTPCondAnalyzer::printTOWEREE().
00026 { return map_; }
void EcalTPGGroups::setValue | ( | const uint32_t & | rawId, | |
const uint32_t & | ObjectId | |||
) |
Definition at line 9 of file EcalTPGGroups.cc.
References map_.
00010 { 00011 map_[rawId] = ObjectId ; 00012 }
EcalTPGGroupsMap EcalTPGGroups::map_ [protected] |