46 #ifndef OPENMS_TRANSFORMATIONS_FEATUREFINDER_SUPERHIRN_ISOTOPICDIST_H 47 #define OPENMS_TRANSFORMATIONS_FEATUREFINDER_SUPERHIRN_ISOTOPICDIST_H 49 #include <OpenMS/TRANSFORMATIONS/FEATUREFINDER/SUPERHIRN/SuperHirnConfig.h> 67 static bool getMatchingPeaks(std::list<CentroidPeak>::iterator, std::list<CentroidPeak>::iterator,
int,
double &,
68 double, std::list<std::list<CentroidPeak>::iterator> &);
69 static void subtractMatchingPeaks(std::list<std::list<CentroidPeak>::iterator> &,
int,
double,
DeconvPeak &);
81 static int getIndex(
double,
int);
83 static double sfIsoDist10[96][20];
84 static double sfIsoDist50[96][20];
85 static double sfIsoDist90[96][20];
86 static double sfIsoMass10[96][20];
87 static double sfIsoMass50[96][20];
88 static double sfIsoMass90[96][20];
89 static int sfNrIsotopes[96];
124 diff = (pMass * pCharge - sfMinMass) / sfMassStep;
127 else if (diff < sfMaxMassIndex)
128 idx = (int) ((pMass * pCharge - sfMinMass) / sfMassStep);
130 idx = sfMaxMassIndex;
137 #endif // OPENMS_TRANSFORMATIONS_FEATUREFINDER_SUPERHIRN_ISOTOPICDIST_H
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
static int getIndex(double, int)
Definition: IsotopicDist.h:118
static double sfMassStep
Definition: IsotopicDist.h:94
static int sfMaxMassIndex
Definition: IsotopicDist.h:90
static double sfMaxMass
Definition: IsotopicDist.h:93
Definition: IsotopicDist.h:59
static double sfMinMass
Definition: IsotopicDist.h:92
static int sfMaxIsotopeIndex
Definition: IsotopicDist.h:91
Definition: CentroidPeak.h:114