Skip to content
Snippets Groups Projects

Streamline upgrade ghost ID

Merged Gerhard Raven requested to merge streamline-ghostid into master
14 files
+ 220
256
Compare changes
  • Side-by-side
  • Inline
Files
14
@@ -35,7 +35,7 @@ namespace Track {
*/
//============================================================================
class TabulatedFunction1D {
class TabulatedFunction1D final {
public:
/** Default Constructor with optional interpolator type argument
@@ -44,10 +44,6 @@ namespace Track {
*/
TabulatedFunction1D( std::initializer_list<float> x );
/// Destructor
virtual ~TabulatedFunction1D();
public:
/** Computes the function value (y) for the given parameter (x) value
* with linear interpolation between bin edges
* does out of range check
@@ -56,7 +52,7 @@ namespace Track {
*
* @return The value of the function at the given parameter value
*/
float value( const float x ) const;
float value( float x ) const;
private: // data
// edges of x bins
Loading