-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathLiniendaten.h
51 lines (44 loc) · 1.31 KB
/
Liniendaten.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/*
* Liniendaten.h
*
* Copyright (c) 2011-2017 Stefan Bender
* Copyright (c) 2010-2011 Martin Langowski
*
* Initial version created on: 13.04.2010
* Author: Martin Langowski
*
* This file is part of scia_retrieval_2d
*
* scia_retrieval_2d is free software: you can redistribute it or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 2.
* See accompanying COPYING.GPL2 file or http://www.gnu.org/licenses/gpl-2.0.html.
*/
#ifndef LINIENDATEN_HH_
#define LINIENDATEN_HH_
#include <string>
class Liniendaten
{
//Daten für eine Linie //Da nur wenig Daten-> nicht zeitkritisch
public:
//Konstruktor
Liniendaten();
//Methoden
void Einlesen(std::string Dateiname, double Wellenlaenge); // aus Datei einlesen
void Emissivitaet_ermitteln(); // aus Rohdaten Gamma berechnen
// !! ACHTUNG HIER GIBTS DISKUSSIONSBEDARF!!
// siehe Code
void Auf_Bildschirm_Ausgeben();
//Membervariablen
// eingelesene
double m_Wellenlaenge; //in nm
double m_rel_Einstein;
double m_f_Wert; // Oszillatorstärke
double m_E1;
double m_E2;
//
//double m_theta; //Streuwinkel Theta ist Lichtwegabhängig, also nicht konstant
//errechnete
double m_Gamma; //Emissivität
};
#endif /* LINIENDATEN_HH_ */