15 while(cellmap.begin() != cellmap.end())
17 delete cellmap.begin()->second;
18 cellmap.erase(cellmap.begin());
27 os <<
"Number of cells: " << size() << endl;
28 for (iter = cellmap.begin(); iter != cellmap.end(); ++iter)
30 os <<
"cell key 0x" << hex << iter->first << dec << endl;
31 (iter->second)->identify();
40 if (cellmap.find(key) != cellmap.end())
42 cout <<
"overwriting cell 0x" << hex << key << dec << endl;
45 cellmap[key] = newcell;
46 return cellmap.find(key);
52 if(cellmap.find(key)!=cellmap.end())
54 cout <<
"PHG4CellContainer::AddCellSpecifyKey: duplicate key: " << key <<
" exiting now" << endl;
58 cellmap[key] = newcell;
59 return cellmap.find(key);
71 retpair.first = cellmap.lower_bound(keylow);
72 retpair.second = cellmap.upper_bound(keyup);
78 {
return std::make_pair( cellmap.begin(), cellmap.end() ); }
85 if(it == cellmap.end())
88 it = cellmap.find(key);
100 if(it != cellmap.end())
112 double totalenergy = 0;
113 for (iter = cellmap.begin(); iter != cellmap.end(); ++iter)
115 totalenergy += iter->second->get_edep();
PHG4Cell * findCell(PHG4CellDefs::keytype key)
std::pair< ConstIterator, ConstIterator > ConstRange
double getTotalEdep() const
Map::const_iterator ConstIterator
ConstRange getCells(void) const
return all hist
ConstIterator AddCellSpecifyKey(const PHG4CellDefs::keytype key, PHG4Cell *newCell)
Iterator findOrAddCell(PHG4CellDefs::keytype key)
void identify(std::ostream &os=std::cout) const
ConstIterator AddCell(PHG4Cell *newCell)
virtual void set_cellid(const PHG4CellDefs::keytype i)
virtual PHG4CellDefs::keytype get_cellid() const
unsigned long long keytype
short int get_detid(const PHG4CellDefs::keytype key)