46 #ifndef OPENMS_TRANSFORMATIONS_FEATUREFINDER_SUPERHIRN_CENTROIDPEAK_H 47 #define OPENMS_TRANSFORMATIONS_FEATUREFINDER_SUPERHIRN_CENTROIDPEAK_H 49 #include <OpenMS/TRANSFORMATIONS/FEATUREFINDER/SUPERHIRN/SuperHirnConfig.h> 81 double getIntensity();
83 double getSignalToNoise();
84 double getFittedIntensity();
85 double getOrgIntensity();
86 std::string getExtraPeakInfo();
87 double getRetentionTime();
89 void setMass(
double pMass);
90 void setIntensity(
double pIntensity);
91 void setIsotopIdx(
double pIsotopIdx);
92 void setSignalToNoise(
double in);
93 void setFittedIntensity(
double pFittedIntensity);
94 void setOrgIntensity(
double pOrgIntensity);
95 void setExtraPeakInfo(std::string in);
96 void setRetentionTime(
double in);
99 void subtractIntensity(
double);
120 DeconvPeak(
double,
double,
int,
int,
double,
double);
134 double getC13MassError();
136 std::vector<CentroidPeak> getIsotopicPeaks();
138 void setCharge(
int pCharge);
139 void setNrIsotopes(
int pNrIsotopes);
140 void setC13MassError(
double pC13MassError);
141 void setScore(
double pScore);
142 void setIsotopicPeaks(std::vector<CentroidPeak> pIsotopicPeaks);
176 return signalToNoise_;
181 return fittedIntensity_;
186 return orgIntensity_;
191 return extraPeakInfo_;
206 intensity_ = pIntensity;
211 isotopIdx_ = (int) pIsotopIdx;
221 fittedIntensity_ = pFittedIntensity;
226 orgIntensity_ = pOrgIntensity;
253 return c13MassError_;
263 return isotopicPeaks_;
273 c13MassError_ = pC13MassError;
278 nrIsotopes_ = pNrIsotopes;
288 isotopicPeaks_ = pIsotopicPeaks;
293 #endif // OPENMS_TRANSFORMATIONS_FEATUREFINDER_SUPERHIRN_CENTROIDPEAK_H double mass_
Definition: CentroidPeak.h:104
double getSignalToNoise()
Definition: CentroidPeak.h:174
void setIsotopIdx(double pIsotopIdx)
Definition: CentroidPeak.h:209
double getRetentionTime()
Definition: CentroidPeak.h:194
int getIsotopIdx()
Definition: CentroidPeak.h:169
double getFittedIntensity()
Definition: CentroidPeak.h:179
void setIntensity(double pIntensity)
Definition: CentroidPeak.h:204
int getCharge()
Definition: CentroidPeak.h:241
int charge_
Definition: CentroidPeak.h:146
double getMass()
Definition: CentroidPeak.h:159
void setFittedIntensity(double pFittedIntensity)
Definition: CentroidPeak.h:219
double getC13MassError()
Definition: CentroidPeak.h:251
void setCharge(int pCharge)
Definition: CentroidPeak.h:266
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
void setC13MassError(double pC13MassError)
Definition: CentroidPeak.h:271
bool operator<(const MultiplexDeltaMasses &dm1, const MultiplexDeltaMasses &dm2)
int getNrIsotopes()
Definition: CentroidPeak.h:246
std::string getExtraPeakInfo()
Definition: CentroidPeak.h:189
double fittedIntensity_
Definition: CentroidPeak.h:106
double getScore()
Definition: CentroidPeak.h:256
void setMass(double pMass)
Definition: CentroidPeak.h:199
int nrIsotopes_
Definition: CentroidPeak.h:147
void setExtraPeakInfo(std::string in)
Definition: CentroidPeak.h:229
std::ostream & operator<<(std::ostream &os, const AccurateMassSearchResult &amsr)
double tr_
Definition: CentroidPeak.h:108
double orgIntensity_
Definition: CentroidPeak.h:107
int isotopIdx_
Definition: CentroidPeak.h:103
std::vector< CentroidPeak > isotopicPeaks_
Definition: CentroidPeak.h:150
double c13MassError_
Definition: CentroidPeak.h:148
double intensity_
Definition: CentroidPeak.h:105
void setSignalToNoise(double in)
Definition: CentroidPeak.h:214
void setRetentionTime(double in)
Definition: CentroidPeak.h:234
double signalToNoise_
Definition: CentroidPeak.h:109
std::vector< CentroidPeak > getIsotopicPeaks()
Definition: CentroidPeak.h:261
std::string extraPeakInfo_
Definition: CentroidPeak.h:110
void setNrIsotopes(int pNrIsotopes)
Definition: CentroidPeak.h:276
void setScore(double pScore)
Definition: CentroidPeak.h:281
void setOrgIntensity(double pOrgIntensity)
Definition: CentroidPeak.h:224
Definition: CentroidPeak.h:60
double score_
Definition: CentroidPeak.h:149
double getIntensity()
Definition: CentroidPeak.h:164
void setIsotopicPeaks(std::vector< CentroidPeak > pIsotopicPeaks)
Definition: CentroidPeak.h:286
double getOrgIntensity()
Definition: CentroidPeak.h:184
Definition: CentroidPeak.h:114