All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
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 {
8  public:
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
ScatterClosestApproach(const float mean, const float stdDev, const float max)