ARTS  2.3.1285(git:92a29ea9-dirty)
m_quantum.cc
Go to the documentation of this file.
1 /* Copyright (C) 2019 Richard Larsson
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 
26 #include "energylevelmap.h"
27 #include "quantum.h"
28 #include "messages.h"
29 
31  const ArrayOfQuantumIdentifier& nlte_level_identifiers,
32  const Vector& nlte_vibrational_energies,
33  const Tensor4& data,
34  const Verbosity&)
35 {
36  nlte_field = EnergyLevelMap(data, nlte_level_identifiers, nlte_vibrational_energies);
37 }
38 
40  const ArrayOfQuantumIdentifier& nlte_level_identifiers,
41  const Vector& nlte_vibrational_energies,
42  const Matrix& data,
43  const Verbosity&)
44 {
45  abs_nlte = EnergyLevelMap(data, nlte_level_identifiers, nlte_vibrational_energies);
46 }
47 
49  const ArrayOfQuantumIdentifier& nlte_level_identifiers,
50  const Vector& nlte_vibrational_energies,
51  const Vector& data,
52  const Verbosity&)
53 {
54  rtp_nlte = EnergyLevelMap(data, nlte_level_identifiers, nlte_vibrational_energies);
55 }
56 
57 
58 /* Workspace method: Doxygen documentation will be auto-generated */
60  x = y;
61 }
Declarations having to do with the four output streams.
The Vector class.
Definition: matpackI.h:860
The Tensor4 class.
Definition: matpackIV.h:421
G0 G2 FVC Y DV Numeric Numeric Numeric Zeeman LowerQuantumNumbers void * data
void rtp_nlteFromRaw(EnergyLevelMap &rtp_nlte, const ArrayOfQuantumIdentifier &nlte_level_identifiers, const Vector &nlte_vibrational_energies, const Vector &data, const Verbosity &)
WORKSPACE METHOD: rtp_nlteFromRaw.
Definition: m_quantum.cc:48
void nlte_fieldFromRaw(EnergyLevelMap &nlte_field, const ArrayOfQuantumIdentifier &nlte_level_identifiers, const Vector &nlte_vibrational_energies, const Tensor4 &data, const Verbosity &)
WORKSPACE METHOD: nlte_fieldFromRaw.
Definition: m_quantum.cc:30
The Matrix class.
Definition: matpackI.h:1193
void EnergyLevelMapSet(EnergyLevelMap &x, const EnergyLevelMap &y, const Verbosity &)
WORKSPACE METHOD: EnergyLevelMapSet.
Definition: m_quantum.cc:59
Class to map energy levels.
This can be used to make arrays out of anything.
Definition: array.h:40
void abs_nlteFromRaw(EnergyLevelMap &abs_nlte, const ArrayOfQuantumIdentifier &nlte_level_identifiers, const Vector &nlte_vibrational_energies, const Matrix &data, const Verbosity &)
WORKSPACE METHOD: abs_nlteFromRaw.
Definition: m_quantum.cc:39