EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
EicStlVertex.cxx
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file EicStlVertex.cxx
1 //
2 // AYK (ayk@bnl.gov), 2014/01/08; revamped in Oct'2017;
3 //
4 // EicRoot CAD manipulation routines; 3D vertex class;
5 //
6 
7 #include <EicStlVertex.h>
8 
9 // =======================================================================================
10 
12 {
13  if (!vertices || !vertices->size()) return NULL;
14 
15  {
16  unsigned counter = 0;
17  double arr[vertices->size()*3];
18 
19  for(vEntry::const_iterator vt=vertices->begin(); vt!=vertices->end() ; vt++)
20  memcpy(arr + (counter++)*3, vt->second->key()->GetData(), 3*sizeof(double));
21 
22  return new EicStlKey(vertices->size()*3, arr);
23  }
24 } // GetVertexArrayKey()
25 
26 // =======================================================================================