|  | OpenMS
    2.6.0
    | 
iterator class for access of spline packages More...
#include <OpenMS/FILTERING/DATAREDUCTION/SplineInterpolatedPeaks.h>
| Public Member Functions | |
| Navigator (const std::vector< SplinePackage > *packages, double posMin, double posMax, double scaling) | |
| constructor of iterator  More... | |
| Navigator () | |
| constructor (for pyOpenMS)  More... | |
| ~Navigator () | |
| destructor  More... | |
| double | eval (double pos) | 
| returns spline interpolated intensity at this position (fast access since we can start search from lastPackage)  More... | |
| double | getNextPos (double pos) | 
| returns the next sensible m/z (or RT) position for scanning through a spectrum (or chromatogram) (fast access since we can start search from lastPackage)  More... | |
| Private Attributes | |
| const std::vector< SplinePackage > * | packages_ | 
| list of spline packages to be accessed  More... | |
| size_t | last_package_ | 
| index of spline package last accessed  More... | |
| double | pos_min_ | 
| m/z (or RT) limits of the spectrum (or chromatogram)  More... | |
| double | pos_max_ | 
| double | pos_step_width_scaling_ | 
| scaling of the step width  More... | |
iterator class for access of spline packages
| Navigator | ( | const std::vector< SplinePackage > * | packages, | 
| double | posMin, | ||
| double | posMax, | ||
| double | scaling | ||
| ) | 
constructor of iterator
| scaling | The step width can be scaled by this factor. Often it is adventageous to iterate in slightly smaller steps over the spectrum (or chromatogram). | 
| Navigator | ( | ) | 
constructor (for pyOpenMS)
| ~Navigator | ( | ) | 
destructor
returns spline interpolated intensity at this position (fast access since we can start search from lastPackage)
Referenced by SpectraMerger::averageProfileSpectra_().
returns the next sensible m/z (or RT) position for scanning through a spectrum (or chromatogram) (fast access since we can start search from lastPackage)
In the middle of a package, we increase the position by the average spacing of the input data (times a scaling factor). At the end of a package, we jump straight to the beginning of the next package.
| 
 | private | 
index of spline package last accessed
| 
 | private | 
list of spline packages to be accessed
| 
 | private | 
| 
 | private | 
m/z (or RT) limits of the spectrum (or chromatogram)
| 
 | private | 
scaling of the step width
Each package stores its own step width, which is the average spacing of the input data points. This step width can be adjusted by the scaling factor. Often it is advantageous to use a step width which is somewhat smaller than the average raw data spacing.
 1.8.16
 1.8.16