30 #include "boost/thread/thread.hpp"
31 #include "boost/thread/barrier.hpp"
34 using namespace pwiz::util;
35 using namespace pwiz::chemistry;
54 int numC, numH, numN, numO,
numS;
61 {
"C1H2N3O4S5", 1, 2, 3, 4, 5, 279.864884, 280.36928 },
62 {
"C1H 2N3O4 S5", 1, 2, 3, 4, 5, 279.864884, 280.36928 },
63 {
"H-42", 0, -42, 0, 0, 0, -42.328651, -42.333512 },
64 {
"N2C-1", -1, 0, 2, 0, 0, 28.006148-12, 28.013486-12.0107 },
65 {
"C39H67N11O10", 39, 67, 11, 10, 0, 849.507238, 850.01698 },
66 {
"C3H7N1O2Se1", 3, 7, 1, 2, 0, 168.9642, 168.0532 }
78 const double EPSILON = 0.001;
97 if (
os_) *
os_ <<
"formula: " << formula << endl;
98 if (
os_) *
os_ <<
"formula2: " << formula2 << endl;
103 if (
os_) *
os_ <<
"formula: " << formula << endl;
104 if (
os_) *
os_ <<
"formula2: " << formula2 << endl;
123 for (Formula::Map::iterator it=data.begin(), end=data.end(); it!=end; ++it)
124 *
os_ << it->first << it->second <<
" ";
133 using namespace Element;
150 if (
os_) *
os_ <<
"water: " << a-water << endl;
172 "[chemistry::text2enum()] Error translating symbol foo");
188 Formula formula(
"Si6C12H36O6");
192 *
os_ <<
"polysiloxane:\n"
216 cerr <<
"Exception in worker thread: " << e.what() << endl;
220 cerr <<
"Unhandled exception in worker thread." << endl;
226 boost::barrier testBarrier(testThreadCount);
227 boost::thread_group testThreadGroup;
228 for (
int i=0; i < testThreadCount; ++i)
230 testThreadGroup.join_all();
234 int main(
int argc,
char* argv[])
238 if (argc>1 && !strcmp(argv[1],
"-v"))
os_ = &cout;
239 if (
os_) *
os_ <<
"ChemistryTest\n" << setprecision(12);