CMS 3D CMS Logo

Functions
hsm_3d.h File Reference
#include <vector>
#include "DataFormats/GeometryVector/interface/GlobalPoint.h"

Go to the source code of this file.

Functions

GlobalPoint hsm_3d (const std::vector< GlobalPoint > &values)
 cordinate wise half sample mode in 3d More...
 

Function Documentation

◆ hsm_3d()

GlobalPoint hsm_3d ( const std::vector< GlobalPoint > &  values)

cordinate wise half sample mode in 3d

Definition at line 8 of file hsm_3d.cc.

References hsm_1d(), mps_fire::i, runTheMatrix::ret, and contentValuesCheck::values.

Referenced by HsmModeFinder3d::operator()(), and SubsetHsmModeFinder3d::operator()().

8  {
9  const int sze = values.size();
10  if (sze == 0) {
11  throw VertexException("hsm_3d: no values given.");
12  };
13  std::vector<float> x_vals, y_vals, z_vals;
14  x_vals.reserve(sze - 1);
15  y_vals.reserve(sze - 1);
16  z_vals.reserve(sze - 1);
17  for (std::vector<GlobalPoint>::const_iterator i = values.begin(); i != values.end(); i++) {
18  x_vals.push_back(i->x());
19  y_vals.push_back(i->y());
20  z_vals.push_back(i->z());
21  };
22 
23  // FIXME isnt necessary, is it?
24  /*
25  sort ( x_vals.begin(), x_vals.end() );
26  sort ( y_vals.begin(), y_vals.end() );
27  sort ( z_vals.begin(), z_vals.end() );*/
28 
29  GlobalPoint ret(hsm_1d(x_vals), hsm_1d(y_vals), hsm_1d(z_vals));
30  return ret;
31 }
T hsm_1d(std::vector< T > values)
Definition: hsm_1d.h:53
Common base class.
ret
prodAgent to be discontinued