30 using namespace pwiz::util;
31 using namespace pwiz::chemistry;
44 double probability(
const vector<double>& p,
const vector<int>& i)
46 if (p.size() < i.size())
47 throw runtime_error(
"p not big enough");
52 const int n = accumulate(i.begin(), i.end(), 0);
56 vector<int> p_count = i, C_count = i;
61 for (
int count=0; count<3*n; )
63 if (n_count && result<=1)
70 while ((result>=1 || n_count==0) && accumulate(C_count.begin(), C_count.end(), 0))
72 vector<int>::iterator it = find_if(C_count.begin(), C_count.end(),
nonzero);
73 if (it == C_count.end())
throw runtime_error(
"blech");
79 while ((result>=1 || n_count==0) && accumulate(p_count.begin(), p_count.end(), 0))
81 vector<int>::iterator it = find_if(p_count.begin(), p_count.end(),
nonzero);
82 if (it == p_count.end())
throw runtime_error(
"blech2");
83 size_t index = it - p_count.begin();
97 Formula angiotensin(
"C50 H71 N13 O12 ");
98 Formula bombesin(
"C71 H110 N24 O18 S1");
99 Formula substanceP(
"C63 H98 N18 O13 S1");
100 Formula neurotensin(
"C78 H121 N21 O20");
101 Formula alpha1_6(
"C45 H59 N11 O8");
104 if (
os_) *
os_ <<
"MassDistribution:\n" << md << endl;
112 if (
os_) *
os_ <<
"C distribution: " << md << endl;
115 for (MassDistribution::const_iterator it=md.begin(); it!=md.end(); ++it)
116 p.push_back(it->abundance);
118 vector<int> neutron0; neutron0.push_back(100);
119 vector<int> neutron1; neutron1.push_back(99); neutron1.push_back(1);
120 vector<int> neutron2; neutron2.push_back(98); neutron2.push_back(2);
121 vector<int> neutron3; neutron3.push_back(97); neutron3.push_back(3);
122 vector<int> neutron4; neutron4.push_back(96); neutron4.push_back(4);
124 vector<double> abundances;
133 *
os_ <<
"C100 abundances (manually calculated):\n";
134 copy(abundances.begin(), abundances.end(), ostream_iterator<double>(*
os_,
"\n"));
139 if (
os_) *
os_ <<
"C100 distribution (from IsotopeCalculator):\n"
143 for (
unsigned int i=0; i<abundances.size(); i++)
150 if (
os_) *
os_ <<
"mass normalized:\n"
154 if (
os_) *
os_ <<
"abundance normalized:\n"
156 IsotopeCalculator::NormalizeAbundance) << endl;
160 IsotopeCalculator::NormalizeAbundance);
161 if (
os_) *
os_ <<
"both normalized:\n" << md << endl;
163 double sumSquares = 0;
164 for (MassDistribution::iterator it=md.begin(); it!=md.end(); ++it)
165 sumSquares += it->abundance * it->abundance;
166 if (
os_) *
os_ <<
"sumSquares: " << sumSquares << endl;
173 int main(
int argc,
char* argv[])
179 if (argc>1 && !strcmp(argv[1],
"-v"))
os_ = &cout;
180 if (
os_) *
os_ <<
"IsotopeCalculatorTest\n" << setprecision(12);