~ubuntu-branches/ubuntu/precise/kalzium/precise

« back to all changes in this revision

Viewing changes to libscience/tests/spectrumreadingtests.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Philip Muškovac
  • Date: 2011-07-03 12:28:58 UTC
  • Revision ID: james.westby@ubuntu.com-20110703122858-q1yyxncs89e4w0hs
Tags: upstream-4.6.90+repack
Import upstream version 4.6.90+repack

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
 *   Copyright (C) 2008 by Carsten Niehaus <cniehaus@kde.org>              *
 
3
 *                                                                         *
 
4
 *   This program is free software; you can redistribute it and/or modify  *
 
5
 *   it under the terms of the GNU General Public License as published by  *
 
6
 *   the Free Software Foundation; either version 2 of the License, or     *
 
7
 *   (at your option) any later version.                                   *
 
8
 *                                                                         *
 
9
 *   This program is distributed in the hope that it will be useful,       *
 
10
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 
11
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 
12
 *   GNU General Public License for more details.                          *
 
13
 *                                                                         *
 
14
 *   You should have received a copy of the GNU General Public License     *
 
15
 *   along with this program; if not, write to the                         *
 
16
 *   Free Software Foundation, Inc.,                                       *
 
17
 *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.          *
 
18
 ***************************************************************************/
 
19
 
 
20
#include "spectrumparser.h"
 
21
#include "spectrum.h"
 
22
#include <QDebug>
 
23
#include <iostream>
 
24
 
 
25
int main(int argc, char *argv[])
 
26
{
 
27
    if (argc < 2 || argc > 2) {
 
28
        std::cout << "Usage: spectrum <XML_FILE>\n";
 
29
        return 1;
 
30
    }
 
31
 
 
32
    SpectrumParser * parser = new SpectrumParser();
 
33
    QFile xmlFile(argv[1]);
 
34
 
 
35
    QXmlInputSource source(&xmlFile);
 
36
    QXmlSimpleReader reader;
 
37
 
 
38
    reader.setContentHandler(parser);
 
39
    reader.parse(source);
 
40
 
 
41
    QList<Spectrum*> v = parser->getSpectrums();
 
42
 
 
43
    qDebug() << "Found " << v.count() << " isotopes.";
 
44
 
 
45
    foreach( Spectrum* s, v ){
 
46
        if ( s )
 
47
        {
 
48
            qDebug() << "Element:  " << s->parentElementNumber();
 
49
            foreach (Spectrum::peak * p , s->peaklist() ) {
 
50
                qDebug() << "         Peak: " << p->wavelength;
 
51
            }
 
52
        }
 
53
    }
 
54
 
 
55
    delete parser;
 
56
    qDeleteAll(v);
 
57
 
 
58
    return 0;
 
59
}