Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
srcs
sbnobj
sbnobj
Common
Reco
ScatterClosestApproach.h
Go to the documentation of this file.
1
// Class for holding the result of calculating the Distacnce of Closest approach for a track
2
3
#ifndef sbncode_scatterclosestapproach_H
4
#define sbncode_scatterclosestapproach_H
5
6
namespace
sbn {
7
class
ScatterClosestApproach
{
8
public
:
9
ScatterClosestApproach
()
10
:
mean
(-5.f)
11
,
stdDev
(-5.f)
12
,
max
(-5.f)
13
{
14
}
15
16
ScatterClosestApproach
(
const
float
mean
,
const
float
stdDev
,
const
float
max
)
17
: mean(mean)
18
, stdDev(stdDev)
19
, max(max)
20
{
21
}
22
23
float
mean
;
// Average ClosestApproach [cm]
24
float
stdDev
;
// Standard Deviation ClosestApproach [cm]
25
float
max
;
// Maximum ClosestApproach [cm]
26
};
27
}
28
29
#endif
sbn::ScatterClosestApproach::max
float max
Definition:
ScatterClosestApproach.h:25
sbn::ScatterClosestApproach
Definition:
ScatterClosestApproach.h:7
sbn::ScatterClosestApproach::stdDev
float stdDev
Definition:
ScatterClosestApproach.h:24
sbn::ScatterClosestApproach::mean
float mean
Definition:
ScatterClosestApproach.h:23
sbn::ScatterClosestApproach::ScatterClosestApproach
ScatterClosestApproach()
Definition:
ScatterClosestApproach.h:9
sbn::ScatterClosestApproach::ScatterClosestApproach
ScatterClosestApproach(const float mean, const float stdDev, const float max)
Definition:
ScatterClosestApproach.h:16
Generated by
1.8.5