29 using namespace pwiz::util;
36 bool operator()( boost::shared_ptr<const int> m) {
return *m == _n;}
43 if (
os_) *
os_ <<
"\n[BinTest.cpp] test() ... \n";
44 pair<double,double> a = make_pair(1.5,2);
45 pair<double,double> b = make_pair(2.5,3);
46 pair<double,double> c = make_pair(3,2.0);
52 vector<pair<pair<double,double>,
int> > stuf;
53 stuf.push_back(make_pair(a,a1));
54 stuf.push_back(make_pair(b,b1));
55 stuf.push_back(make_pair(c,c1));
57 Bin<int> bin(stuf, 4, 4);
59 vector<boost::shared_ptr<int> > v;
60 pair<double,double> p(1.6,2);
61 bin.getBinContents(p, v);
63 vector<boost::shared_ptr<int> >::iterator it = v.begin();
67 *
os_ <<
"\ntesting Bin::getBinContents ... found: \n";
68 for(; it != v.end(); ++it)
78 vector<boost::shared_ptr<int> >::iterator v_it = v.begin();
79 vector<int>::iterator truth_it = truth.begin();
80 for(; v_it != v.end(); ++v_it, ++truth_it)
unit_assert(**v_it == *truth_it);
84 Bin<int> smallBins(stuf,0.5,0.5);
85 vector<boost::shared_ptr<int> > v2;
86 smallBins.getAdjacentBinContents(pair<double,double>(1,2),v2);
88 vector<boost::shared_ptr<int> >::iterator it2 = v2.begin();
94 *
os_ <<
"\ntesting Bin::getAdjacentBinContents ... found: \n";
95 for(; it2 != v2.end(); ++it2)
96 *
os_ << **it2 << endl;
103 smallBins.update(n, pair<double,double>(1.5,2));
105 vector<boost::shared_ptr<int> > v3;
106 smallBins.getAdjacentBinContents(pair<double,double>(1,2), v3);
107 vector<boost::shared_ptr<int> >::iterator it3 = v3.begin();
113 *
os_ <<
"\ntesting Bin::update ... found: \n";
114 for(; it3 != v3.end(); ++it3)
115 *
os_ << **it3 << endl;
121 smallBins.erase(n, pair<double,double>(1.5,2));
122 vector<boost::shared_ptr<int> > v4;
123 smallBins.getAdjacentBinContents(pair<double,double>(1,2), v4);
124 vector<boost::shared_ptr<int> >::iterator it4 = v4.begin();
130 int main(
int argc,
char* argv[])
134 if (argc>1 && !strcmp(argv[1],
"-v"))
os_ = &cout;
139 catch (std::exception&
e)
141 cerr << e.what() << endl;
148 cerr <<
"Caught unknown exception.\n";