A transforming m/z wrapper around spectrum access using a quadratic equation. More...
#include <OpenMS/ANALYSIS/OPENSWATH/DATAACCESS/SpectrumAccessQuadMZTransforming.h>
Public Member Functions | |
SpectrumAccessQuadMZTransforming (OpenSwath::SpectrumAccessPtr sptr, double a, double b, double c, bool ppm) | |
Constructor. More... | |
~SpectrumAccessQuadMZTransforming () | |
boost::shared_ptr< OpenSwath::ISpectrumAccess > | lightClone () const |
Light clone operator to produce a copy for concurrent read access. More... | |
OpenSwath::SpectrumPtr | getSpectrumById (int id) |
Return a pointer to a spectrum at the given id. More... | |
Public Member Functions inherited from SpectrumAccessTransforming | |
SpectrumAccessTransforming (OpenSwath::SpectrumAccessPtr sptr) | |
virtual | ~SpectrumAccessTransforming ()=0 |
virtual OpenSwath::SpectrumMeta | getSpectrumMetaById (int id) const |
Returns the meta information for a spectrum. More... | |
virtual std::vector< std::size_t > | getSpectraByRT (double RT, double deltaRT) const |
Return a vector of ids of spectra that are within RT +/- deltaRT. More... | |
virtual size_t | getNrSpectra () const |
Returns the number of spectra available. More... | |
virtual OpenSwath::ChromatogramPtr | getChromatogramById (int id) |
Return a pointer to a chromatogram at the given id. More... | |
virtual size_t | getNrChromatograms () const |
Returns the number of chromatograms available. More... | |
virtual std::string | getChromatogramNativeID (int id) const |
Returns the native id of the chromatogram at the given id. More... | |
Public Member Functions inherited from ISpectrumAccess | |
virtual | ~ISpectrumAccess () |
Destructor. More... | |
Private Attributes | |
double | a_ |
double | b_ |
double | c_ |
bool | ppm_ |
Additional Inherited Members | |
Protected Attributes inherited from SpectrumAccessTransforming | |
OpenSwath::SpectrumAccessPtr | sptr_ |
A transforming m/z wrapper around spectrum access using a quadratic equation.
For each spectrum access, each m/z value is transformed using the equation mz = a + b * mz + c * mz^2
This can be used to implement an on-line mass correction for TOF instruments (for example).
|
explicit |
Constructor.
a | Regression parameter 0 |
b | Regression parameter 1 |
c | Regression parameter 2 |
ppm | Whether the transformation should be applied in ppm domain (if false, it is applied directly in m/z domain) |
|
virtual |
Return a pointer to a spectrum at the given id.
Reimplemented from SpectrumAccessTransforming.
|
virtual |
Light clone operator to produce a copy for concurrent read access.
This function guarantees to produce a copy of the underlying object that provides thread-safe concurrent read access to the underlying data. It should be implemented with minimal copy-overhead to make this operation as fast as possible.
To use this function, each thread should call this function to produce an individual copy on which it can operate.
Implements SpectrumAccessTransforming.
|
private |
|
private |
|
private |
|
private |
OpenMS / TOPP release 2.3.0 | Documentation generated on Tue Jan 9 2018 18:22:13 using doxygen 1.8.13 |