UFO
ProfileCheckBasic.h
Go to the documentation of this file.
1 /*
2  * (C) Crown copyright 2020, Met Office
3  *
4  * This software is licensed under the terms of the Apache Licence Version 2.0
5  * which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
6  */
7 
8 #ifndef UFO_PROFILE_PROFILECHECKBASIC_H_
9 #define UFO_PROFILE_PROFILECHECKBASIC_H_
10 
11 #include <vector>
12 
15 
16 namespace ufo {
17 
18  /// \brief Profile QC: basic checks on pressure
20  public:
22 
23  /// Run check
24  void runCheck(ProfileDataHandler &profileDataHandler) override;
25 
26  /// Return result of basic checks
27  bool getResult() override {return result_;}
28 
29  private:
30  /// Result of basic checks
31  bool result_;
32  };
33 } // namespace ufo
34 
35 #endif // UFO_PROFILE_PROFILECHECKBASIC_H_
Options controlling the operation of the ConventionalProfileProcessing filter.
Profile QC checker base class.
Profile QC: basic checks on pressure.
bool getResult() override
Return result of basic checks.
ProfileCheckBasic(const ConventionalProfileProcessingParameters &options)
bool result_
Result of basic checks.
void runCheck(ProfileDataHandler &profileDataHandler) override
Run check.
Retrieve and store data for individual profiles. To do this, first the vector of values in the entire...
Definition: RunCRTM.h:27