85 void pickAndCalibrate(
PeakMap & calib_spectra,
PeakMap & exp, std::vector<double> & exp_masses);
93 void calibrate(
PeakMap & calib_spectra,
PeakMap & exp, std::vector<double> & exp_masses);
96 inline const std::vector<double> &
getML1s()
const {
return ml1s_; }
98 inline void setML1s(
const std::vector<double> & ml1s)
104 inline const std::vector<double> &
getML2s()
const {
return ml2s_; }
106 inline void setML2s(
const std::vector<double> & ml2s)
112 inline const std::vector<double> &
getML3s()
const {
return ml3s_; }
114 inline void setML3s(
const std::vector<double> & ml3s)
128 std::map<double, std::vector<double> >
errors_;
149 void calculateCalibCoeffs_(
PeakMap & calib_peaks_ft);
153 void getMonoisotopicPeaks_(
PeakMap & calib_peaks, std::vector<std::vector<unsigned int> > & monoiso_peaks);
165 void applyTOFConversion_(
PeakMap & calib_spectra);
168 void matchMasses_(
PeakMap & calib_peaks,
169 std::vector<std::vector<unsigned int> > & monoiso_peaks,
170 std::vector<unsigned int> & obs_masses,
171 std::vector<double> & exp_masses,
175 inline double mQ_(
double ft,
unsigned int spec)
177 return coeff_quad_fit_[3 * spec] + ft * coeff_quad_fit_[3 * spec + 1] + ft * ft * coeff_quad_fit_[3 * spec + 2];
183 return a_ + ft * b_ + ft * ft * c_;
187 void averageErrors_();
190 void averageCoefficients_();
const std::vector< double > & getML2s() const
Non-mutable access to the second calibration constant.
Definition: TOFCalibration.h:104
void setML3s(const std::vector< double > &ml3s)
mutable access to the third calibration constant
Definition: TOFCalibration.h:114
This class implements an external calibration for TOF data using external calibrant spectra...
Definition: TOFCalibration.h:66
std::vector< double > coeff_quad_fit_
all coefficients of the quadratic fit
Definition: TOFCalibration.h:142
std::vector< double > error_medians_
median errors
Definition: TOFCalibration.h:131
std::vector< double > ml3s_
Definition: TOFCalibration.h:139
std::vector< double > ml2s_
Definition: TOFCalibration.h:138
void setML1s(const std::vector< double > &ml1s)
mutable access to the first calibration constant
Definition: TOFCalibration.h:98
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
const std::vector< double > & getML3s() const
Non-mutable access to the third calibration constant.
Definition: TOFCalibration.h:112
std::vector< double > exp_masses_
the expected calibrant masses
Definition: TOFCalibration.h:125
std::vector< double > ml1s_
calibration constants from the instrument needed for the conversion of the calibrant spectra ...
Definition: TOFCalibration.h:137
double c_
Definition: TOFCalibration.h:145
PeakMap calib_peaks_ft_
the calibrant spectra still using flight times instead of m/z-values
Definition: TOFCalibration.h:121
std::map< double, std::vector< double > > errors_
error in ppm after quadratic fit
Definition: TOFCalibration.h:128
const std::vector< double > & getML1s() const
Non-mutable access to the first calibration constant.
Definition: TOFCalibration.h:96
double mQ_(double ft, unsigned int spec)
Calculate the mass value for a given flight time using the coefficients of the quadratic fit in a spe...
Definition: TOFCalibration.h:175
In-Memory representation of a mass spectrometry experiment.
Definition: MSExperiment.h:77
std::vector< double > calib_masses_
Definition: TOFCalibration.h:134
Base class for all classes that want to report their progress.
Definition: ProgressLogger.h:54
A base class for all classes handling default parameters.
Definition: DefaultParamHandler.h:91
double mQAv_(double ft)
Calculate the mass value for a given flight time using the averaged coefficients of the quadratic fit...
Definition: TOFCalibration.h:181
void setML2s(const std::vector< double > &ml2s)
mutable access to the second calibration constant
Definition: TOFCalibration.h:106