ARTS  2.2.66
global_data.h
Go to the documentation of this file.
1 /* Copyright (C) 2000-2012 Stefan Buehler <sbuehler@ltu.se>
2 
3  This program is free software; you can redistribute it and/or modify it
4  under the terms of the GNU General Public License as published by the
5  Free Software Foundation; either version 2, or (at your option) any
6  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 
25 #include <map>
26 #include "array.h"
27 #include "methods.h"
28 #include "agenda_record.h"
29 
30 
31 // Needed for global_data::species_data
32 class SpeciesRecord;
33 // Needed for global_data::lineshape_data
34 class LineshapeRecord;
35 // Needed for global_data::lineshape_norm_data
37 
38 namespace global_data {
39 
40 // ---------------
41 //--------------------< Methods >--------------------
42 // ---------------
43 
45 
52 extern const Array<MdRecord> md_data_raw;
53 
55 
62 extern const Array<MdRecord> md_data;
63 
65 
68 extern const map<String, Index> MdMap;
69 
71 
74 extern const map<String, Index> MdRawMap;
75 
77 
80 extern const Array<AgRecord> agenda_data;
81 
83 
86 extern const map<String, Index> AgendaMap;
87 
89 
95 
97 
100 extern const map<String, Index> WsvGroupMap;
101 
103 
107 
109 
113 
115 
119 
120 } /* namespace global_data */
agenda_record.h
Declarations for AgRecord, storing lookup information for one agenda.
global_data::md_data_raw
const Array< MdRecord > md_data_raw
Lookup information for workspace methods.
Definition: methods.cc:39
global_data::MdRawMap
const map< String, Index > MdRawMap
The map associated with md_data_raw.
Definition: methods_aux.cc:41
LineshapeRecord
Lineshape related information.
Definition: absorption.h:58
global_data::species_data
const Array< SpeciesRecord > species_data
Species Data.
Definition: partition_function_data.cc:43
array.h
This file contains the definition of Array.
global_data::AgendaMap
map< String, Index > AgendaMap
The map associated with agenda_data.
Definition: agenda_record.cc:35
Array
This can be used to make arrays out of anything.
Definition: array.h:107
global_data::MdMap
const map< String, Index > MdMap
The map associated with md_data.
Definition: methods_aux.cc:39
global_data::lineshape_data
const Array< LineshapeRecord > lineshape_data
The lookup data for the different lineshapes.
Definition: lineshapes.cc:1925
global_data::WsvGroupMap
const map< String, Index > WsvGroupMap
The map associated with wsv_group_names.
Definition: groups.cc:42
SpeciesRecord
Contains the lookup data for one species.
Definition: absorption.h:367
global_data::md_data
const Array< MdRecord > md_data
Lookup information for workspace methods.
Definition: methods_aux.cc:48
global_data::lineshape_norm_data
const Array< LineshapeNormRecord > lineshape_norm_data
The lookup data for the different normalization factors to the lineshapes.
Definition: lineshapes.cc:2030
global_data
Definition: agenda_record.cc:33
global_data::agenda_data
const Array< AgRecord > agenda_data
The lookup information for the agendas.
Definition: agendas.cc:41
global_data::wsv_group_names
const ArrayOfString wsv_group_names
The names associated with Wsv groups as Strings.
Definition: global_data.h:94
LineshapeNormRecord
Lineshape related normalization function information.
Definition: absorption.h:107
methods.h
Declaration of the class MdRecord.