ARTS  2.3.1285(git:92a29ea9-dirty)
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 #ifndef global_data_h
26 #define global_data_h
27 
28 #include <map>
29 #include "agenda_record.h"
30 #include "array.h"
31 #include "methods.h"
33 
34 // Needed for global_data::species_data
35 class SpeciesRecord;
36 
37 namespace global_data {
38 
39 // ---------------
40 //--------------------< Methods >--------------------
41 // ---------------
42 
44 
51 extern const Array<MdRecord> md_data_raw;
52 
54 
61 extern const Array<MdRecord> md_data;
62 
64 
67 extern const map<String, Index> MdMap;
68 
70 
73 extern const map<String, Index> MdRawMap;
74 
76 
79 extern const Array<AgRecord> agenda_data;
80 
82 
85 extern const map<String, Index> AgendaMap;
86 
88 
94 
96 
99 extern const map<String, Index> WsvGroupMap;
100 
102 
106 
111 extern const map<String, Index> SpeciesMap;
112 
117 
118 } /* namespace global_data */
119 
120 #endif /* global_data_h */
const map< String, Index > SpeciesMap
The map associated with species_data.
Definition: species_data.cc:44
map< String, Index > AgendaMap
The map associated with agenda_data.
const map< String, Index > MdRawMap
The map associated with md_data_raw.
Definition: methods_aux.cc:41
const Array< SpeciesRecord > species_data
Species Data.
const map< String, Index > MdMap
The map associated with md_data.
Definition: methods_aux.cc:39
This file contains the definition of Array.
WorkspaceMemoryHandler workspace_memory_handler
The workspace memory handler Defined in workspace_ng.cc.
Contains the lookup data for one species.
Definition: absorption.h:144
const Array< AgRecord > agenda_data
The lookup information for the agendas.
Definition: agendas.cc:41
This can be used to make arrays out of anything.
Definition: array.h:40
const ArrayOfString wsv_group_names
The names associated with Wsv groups as Strings.
Definition: global_data.h:93
const map< String, Index > WsvGroupMap
The map associated with wsv_group_names.
Definition: groups.cc:41
const Array< MdRecord > md_data
Lookup information for workspace methods.
The WorkspaceMemoryHandler.
Handling of workspace memory.
Declaration of the class MdRecord.
Declarations for AgRecord, storing lookup information for one agenda.
const Array< MdRecord > md_data_raw
Lookup information for workspace methods.
Definition: methods.cc:39