ARTS
2.4.0(git:4fb77825)
Main Page
Namespaces
Namespace List
Namespace Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
v
w
x
y
z
Variables
Typedefs
a
c
e
g
h
i
l
m
n
o
p
q
r
s
t
v
w
Enumerations
Classes
Class List
Class Hierarchy
Class Members
All
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
a
b
c
d
e
f
i
n
p
q
r
s
t
v
Enumerations
Enumerator
a
b
c
d
e
f
g
n
p
s
t
u
Related Functions
a
c
d
f
i
l
m
n
o
p
s
t
v
x
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
r
s
t
u
v
w
Typedefs
a
c
d
e
f
g
h
i
j
k
l
m
n
p
q
r
s
t
u
v
z
Enumerations
Enumerator
a
e
f
g
i
m
n
p
s
u
v
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
test_xml.cc
Go to the documentation of this file.
1
/* Copyright (C) 2003-2012 Oliver Lemke <olemke@core-dump.info>
2
3
This program is free software; you can redistribute it and/or
4
modify it under the terms of the GNU General Public License as
5
published by the Free Software Foundation; either version 2 of the
6
License, or (at your option) any later version.
7
8
This program is distributed in the hope that it will be useful,
9
but WITHOUT ANY WARRANTY; without even the implied warranty of
10
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11
GNU General Public License for more details.
12
13
You should have received a copy of the GNU General Public License
14
along with this program; if not, write to the Free Software
15
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
16
USA. */
17
18
#include <iostream>
19
#include "
absorption.h
"
20
#include "
arts.h
"
21
#include "
exceptions.h
"
22
#include "
global_data.h
"
23
#include "
matpackII.h
"
24
#include "
xml_io.h
"
25
26
int
main
(
int
/*argc*/
,
char
*
/*argv*/
[]) {
27
using
global_data::species_data
;
28
29
define_species_data
();
30
try
{
31
xml_write_to_file
(
32
"sdata1.xml"
,
species_data
,
FILE_TYPE_ASCII
, 0,
Verbosity
());
33
cout <<
"Wrote species_data: "
<< endl;
34
35
Array<SpeciesRecord>
my_species_data;
36
37
xml_read_from_file
(
"sdata1.xml"
, my_species_data,
Verbosity
());
38
cout <<
"Read species_data: "
<< endl;
39
40
xml_write_to_file
(
41
"sdata2.xml"
, my_species_data,
FILE_TYPE_ASCII
, 0,
Verbosity
());
42
cout <<
"Wrote species_data: "
<< endl;
43
}
catch
(
const
std::runtime_error &e) {
44
cerr << e.what();
45
}
46
47
return
(0);
48
}
FILE_TYPE_ASCII
@ FILE_TYPE_ASCII
Definition:
xml_io.h:38
exceptions.h
The declarations of all the exception classes.
absorption.h
Declarations required for the calculation of absorption coefficients.
global_data::species_data
const Array< SpeciesRecord > species_data
Species Data.
Definition:
partition_function_data.cc:42
Array
This can be used to make arrays out of anything.
Definition:
array.h:108
xml_read_from_file
void xml_read_from_file(const String &filename, T &type, const Verbosity &verbosity)
Reads data from XML file.
Definition:
xml_io.cc:901
global_data.h
xml_write_to_file
void xml_write_to_file(const String &filename, const T &type, const FileType ftype, const Index no_clobber, const Verbosity &verbosity)
Write data to XML file.
Definition:
xml_io.cc:972
matpackII.h
Header file for sparse matrices.
main
int main(int, char *[])
Definition:
test_xml.cc:26
define_species_data
void define_species_data()
Definition:
species_data.cc:158
ARTS::Group::Verbosity
Verbosity Verbosity
Definition:
autoarts.h:114
arts.h
The global header file for ARTS.
xml_io.h
This file contains basic functions to handle XML data files.
src
test_xml.cc
Generated on Thu Oct 15 2020 08:53:04 for ARTS by
1.8.20