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
DataFormats
MuonReco
interface
MuonTime.h
Go to the documentation of this file.
1
#ifndef MuonReco_MuonTime_h
2
#define MuonReco_MuonTime_h
3
4
namespace
reco
{
5
struct
MuonTime
{
6
enum
Direction
{
OutsideIn
= -1,
Undefined
= 0,
InsideOut
= 1 };
7
9
int
nDof
;
10
13
float
timeAtIpInOut
;
14
float
timeAtIpInOutErr
;
16
float
timeAtIpOutIn
;
17
float
timeAtIpOutInErr
;
18
20
Direction
direction
()
const
{
21
if
(
nDof
< 2)
22
return
Undefined
;
23
if
(
timeAtIpInOutErr
>
timeAtIpOutInErr
)
24
return
OutsideIn
;
25
return
InsideOut
;
26
}
27
28
MuonTime
() :
nDof
(0),
timeAtIpInOut
(0),
timeAtIpInOutErr
(0),
timeAtIpOutIn
(0),
timeAtIpOutInErr
(0) {}
29
};
30
}
// namespace reco
31
#endif
reco::MuonTime::MuonTime
MuonTime()
Definition:
MuonTime.h:28
reco::MuonTime::OutsideIn
Definition:
MuonTime.h:6
reco::MuonTime
Definition:
MuonTime.h:5
reco::MuonTime::Undefined
Definition:
MuonTime.h:6
reco::MuonTime::timeAtIpOutInErr
float timeAtIpOutInErr
Definition:
MuonTime.h:17
reco::MuonTime::timeAtIpInOutErr
float timeAtIpInOutErr
Definition:
MuonTime.h:14
reco::MuonTime::timeAtIpOutIn
float timeAtIpOutIn
b) particle is moving from outside in
Definition:
MuonTime.h:16
reco::MuonTime::nDof
int nDof
number of muon stations used
Definition:
MuonTime.h:9
reco::MuonTime::InsideOut
Definition:
MuonTime.h:6
reco
fixed size matrix
Definition:
AlignmentAlgorithmBase.h:46
reco::MuonTime::direction
Direction direction() const
direction estimation based on time dispersion
Definition:
MuonTime.h:20
reco::MuonTime::Direction
Direction
Definition:
MuonTime.h:6
reco::MuonTime::timeAtIpInOut
float timeAtIpInOut
Definition:
MuonTime.h:13
Generated for CMSSW Reference Manual by
1.8.14