|
Документ взят из кэша поисковой машины. Адрес
оригинального документа
: http://xmm.vilspa.esa.es/sas/8.0.0/doc/cifdiff/node8.html
Дата изменения: Wed Jul 2 03:28:37 2008 Дата индексирования: Fri Sep 5 18:39:30 2008 Кодировка: Поисковые слова: http www.badastronomy.com phpbb index.php |
string c1 = stringParameter("calindex1set");
string c2 = stringParameter("calindex2set");
CalIndex cif1 = CalIndexSet(c1).calibrationIndex("cif1");
CalIndex cif2 = CalIndexSet(c2).calibrationIndex("cif2");
ofstream out(stringParameter("outfile").c_str());
cif1.sort(CcfConstituent::compare);
cif2.sort(CcfConstituent::compare);
CalIndex cif3("cif3");
set_difference(cif1.begin(), cif1.end(), cif2.begin(), cif2.end(), back_inserter(cif3), CcfConstituent::compare);
out << "CCF constituents that are in " << c1 << " but not in " << c2 << ":" << endl;
if(cif3.size() == 0)
out << "** none **" << endl;
else
for(CalIndex::const_iterator i = cif3.begin(); i != cif3.end(); i++)
out << (*i)->name() << endl;
// repeat swapping cif1 and cif2