Class Reference for E1039 Core & Analysis Software
PHG4BlockCellGeomContainer.cc
Go to the documentation of this file.
2 #include "PHG4BlockCellGeom.h"
3 #include <cmath>
4 
5 using namespace std;
6 
8 {
9  return;
10 }
11 
13 {
14  while(layergeoms.begin() != layergeoms.end())
15  {
16  delete layergeoms.begin()->second;
17  layergeoms.erase(layergeoms.begin());
18  }
19  return;
20 }
21 
22 void
23 PHG4BlockCellGeomContainer::identify(std::ostream& os) const
24 {
25  map<int,PHG4BlockCellGeom *>::const_iterator iter;
26  for (iter=layergeoms.begin(); iter != layergeoms.end(); ++iter)
27  {
28  cout << "layer " << iter->first << endl;
29  (iter->second)->identify(os);
30  }
31  return;
32 }
33 
34 int
36 {
37  if (layergeoms.find(i) != layergeoms.end())
38  {
39  cout << "layer " << i << " already added to PHBlockCellGeomContainer" << endl;
40  return -1;
41  }
42  mygeom->set_layer(i);
43  layergeoms[i] = mygeom;
44  return 0;
45 }
46 
47 int
49 {
50  int layer = mygeom->get_layer();
51  if (layergeoms.find(layer) != layergeoms.end())
52  {
53  cout << "layer " << layer << " already added to PHBlockCellGeomContainer" << endl;
54  return -1;
55  }
56  layergeoms[layer] = mygeom;
57  return 0;
58 }
59 
62 {
63  map<int,PHG4BlockCellGeom *>::const_iterator iter = layergeoms.find(i);
64  if (iter != layergeoms.end())
65  {
66  return iter->second;
67  }
68  cout << "Could not locate layer " << i << " in PHG4BlockCellGeomContainer" << endl;
69  return NULL;
70 }
71 
#define NULL
Definition: Pdb.h:9
int AddLayerCellGeom(const int i, PHG4BlockCellGeom *mygeom)
void identify(std::ostream &os=std::cout) const
PHG4BlockCellGeom * GetLayerCellGeom(const int i)
void set_layer(const int i)