UFO
|
Profile QC: relative humidity check. More...
#include <ProfileCheckRH.h>
Public Member Functions | |
ProfileCheckRH (const ProfileConsistencyCheckParameters &options, const ProfileIndices &profileIndices, ProfileDataHandler &profileDataHandler, ProfileCheckValidator &profileCheckValidator) | |
void | runCheck () override |
Run check. More... | |
void | fillValidator () override |
Fill variables in validator. More... | |
![]() | |
ProfileCheckBase (const ProfileConsistencyCheckParameters &options, const ProfileIndices &profileIndices, ProfileDataHandler &profileDataHandler, ProfileCheckValidator &profileCheckValidator) | |
virtual | ~ProfileCheckBase () |
virtual bool | getResult () |
Get result of check (default fail) More... | |
Private Attributes | |
std::vector< float > | Press_ |
Observed pressure for selected levels (hPa) More... | |
std::vector< float > | Temp_ |
Observed temperature for selected levels (K) More... | |
std::vector< float > | rh_ |
Observed relative humidity for selected levels (%) More... | |
std::vector< float > | td_ |
Observed dew point temperature for selected levels (K) More... | |
std::vector< float > | tbk_ |
Model temperature for selected levels (K) More... | |
std::vector< float > | rhbk_ |
Model relative humidity for selected levels (%) More... | |
std::vector< int > | FlagH_ |
Flags for RH checks. More... | |
std::vector< int > | Indx_ |
Indices of selected levels. More... | |
Additional Inherited Members | |
![]() | |
template<typename T > | |
void | correctVector (const std::vector< T > &v1, const std::vector< T > &v2, std::vector< T > &vout) |
Apply correction to vector of values. More... | |
![]() | |
const ProfileConsistencyCheckParameters & | options_ |
Configurable parameters. More... | |
const ProfileIndices & | profileIndices_ |
Indices of profile's observations in the entire sample. More... | |
ProfileDataHandler & | profileDataHandler_ |
Profile data handler. More... | |
ProfileCheckValidator & | profileCheckValidator_ |
Profile check validator. More... | |
const float | missingValueFloat = util::missingValue(1.0f) |
Missing value (float) More... | |
Profile QC: relative humidity check.
Definition at line 30 of file ProfileCheckRH.h.
ufo::ProfileCheckRH::ProfileCheckRH | ( | const ProfileConsistencyCheckParameters & | options, |
const ProfileIndices & | profileIndices, | ||
ProfileDataHandler & | profileDataHandler, | ||
ProfileCheckValidator & | profileCheckValidator | ||
) |
Definition at line 15 of file ProfileCheckRH.cc.
|
overridevirtual |
Fill variables in validator.
Implements ufo::ProfileCheckBase.
Definition at line 193 of file ProfileCheckRH.cc.
|
overridevirtual |
Run check.
Implements ufo::ProfileCheckBase.
Definition at line 23 of file ProfileCheckRH.cc.
|
private |
Flags for RH checks.
Definition at line 63 of file ProfileCheckRH.h.
|
private |
Indices of selected levels.
Definition at line 66 of file ProfileCheckRH.h.
|
private |
Observed pressure for selected levels (hPa)
Definition at line 45 of file ProfileCheckRH.h.
|
private |
Observed relative humidity for selected levels (%)
Definition at line 51 of file ProfileCheckRH.h.
|
private |
Model relative humidity for selected levels (%)
Definition at line 60 of file ProfileCheckRH.h.
|
private |
Model temperature for selected levels (K)
Definition at line 57 of file ProfileCheckRH.h.
|
private |
Observed dew point temperature for selected levels (K)
Definition at line 54 of file ProfileCheckRH.h.
|
private |
Observed temperature for selected levels (K)
Definition at line 48 of file ProfileCheckRH.h.