-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMessungs_ausschliessende_Tests.h
39 lines (34 loc) · 1.46 KB
/
Messungs_ausschliessende_Tests.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
/*
* Messungs_ausschliessende_Tests.h
*
* Copyright (c) 2011-2017 Stefan Bender
* Copyright (c) 2010-2011 Martin Langowski
*
* Initial version created on: 13.10.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 MESSUNGS_AUSSCHLIESSENDE_TESTS_HH_
#define MESSUNGS_AUSSCHLIESSENDE_TESTS_HH_
#include <vector>
//Falls Test_auf_Nachtmessung oder Test_auf_NLC positiv sind,
//so werden ganze Dateien aussortiert
//Bei den selten vorkommenden Geolocations ist zumeist nur eine Messung falsch
//(die einzige, die je aufgefallen ist)
bool Test_auf_Nachtmessung_Limb(class Messung_Limb &Tropo, class Konfiguration &Konf);
bool Test_auf_Nachtmessung_Limb_meso_thermo(class Messung_Limb &niedrigste_hoehe,
class Konfiguration &Konf);
bool test_auf_SAA_limb(class Messung_Limb &space, Konfiguration &konf);
bool Test_auf_NLC_Limb(std::vector<class Messung_Limb> &Rohdaten,
class Konfiguration &Konf);
void Test_auf_korrekte_geolocations_Limb(std::vector<class Messung_Limb> &Rohdaten,
int &counter_Winkel_nicht_ok);
bool Test_auf_Nachtmessung_Nadir(std::vector<class Messung_Nadir> &Rohdaten,
int Anzahl_Datensaetze);
#endif /* MESSUNGS_AUSSCHLIESSENDE_TESTS_HH_ */