Main Page
+
Namespaces
Namespace List
+
Namespace Members
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
z
+
Enumerator
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Classes
Class List
Class Index
Class Hierarchy
+
Class Members
+
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Enumerations
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Properties
_
a
c
d
e
f
l
m
o
p
s
t
u
v
+
Related Functions
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Package Documentation
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Properties
Friends
Macros
Modules
Pages
src
RecoVertex
VertexTools
src
lms_3d.cc
Go to the documentation of this file.
1
#include "
CommonTools/Statistics/interface/lms_1d.h
"
2
#include "
RecoVertex/VertexTools/interface/lms_3d.h
"
3
#include "
RecoVertex/VertexPrimitives/interface/VertexException.h
"
4
#include <vector>
5
8
GlobalPoint
lms_3d
(std::vector<GlobalPoint>
values
) {
9
const
int
sze =
values
.size();
10
if
(sze == 0) {
11
throw
VertexException
(
"lms_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>::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
return
GlobalPoint
(
lms_1d
(x_vals),
lms_1d
(y_vals),
lms_1d
(z_vals));
23
}
lms_3d
GlobalPoint lms_3d(std::vector< GlobalPoint > values)
Definition:
lms_3d.cc:8
mps_fire.i
i
Definition:
mps_fire.py:429
VertexException
Common base class.
Definition:
VertexException.h:12
GlobalPoint
Global3DPoint GlobalPoint
Definition:
GlobalPoint.h:10
lms_3d.h
contentValuesCheck.values
values
Definition:
contentValuesCheck.py:38
VertexException.h
lms_1d
T lms_1d(std::vector< T > values)
Definition:
lms_1d.h:15
Point3DBase< float, GlobalTag >
lms_1d.h
Generated for CMSSW Reference Manual by
1.8.14