MI - Fimex
Pressure.h
Go to the documentation of this file.
1 /*
2  * Fimex, Pressure.h
3  *
4  * (C) Copyright 2013, met.no
5  *
6  * Project Info: https://wiki.met.no/fimex/start
7  *
8  * This library is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU Lesser General Public License as published by
10  * the Free Software Foundation; either version 2.1 of the License, or
11  * (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful, but
14  * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
15  * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
16  * License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
21  * USA.
22  *
23  * Created on: Aug 6, 2013
24  * Author: heikok
25  */
26 
27 #ifndef PRESSURE_H_
28 #define PRESSURE_H_
29 
31 
32 namespace MetNoFimex
33 {
34 
35 // forward decl
36 class ToVLevelConverter;
37 
38 
43 class Pressure : public VerticalTransformation
45 {
46 public:
49  Pressure(const std::string& pressure) : pressure(pressure) {}
50  virtual ~Pressure() {}
55  static const std::string NAME() {return "pressure";}
59  virtual std::string getName() const { return NAME(); }
60  virtual int getPreferredVerticalType() const { return MIFI_VINT_PRESSURE; }
61  virtual std::string getParameterString() const { return "p="+pressure; }
62  virtual bool isComplete() const {return pressure != "";}
63 protected:
64  virtual boost::shared_ptr<ToVLevelConverter> getPressureConverter(const boost::shared_ptr<CDMReader>& reader, size_t unLimDimPos, boost::shared_ptr<const CoordinateSystem> cs, size_t nx, size_t ny, size_t nt) const;
65 };
66 
67 } /* namespace MetNoFimex */
68 #endif /* PRESSURE_H_ */
basic_string< char > string
virtual int getPreferredVerticalType() const
the most natural vertical type, one of the MIFI_VINT_* in fimex/mifi_constants.h
Definition: Pressure.h:60
Definition: C_CDMReader.h:35
static const std::string NAME()
Definition: Pressure.h:55
virtual std::string getParameterString() const
list the parameters
Definition: Pressure.h:61
virtual boost::shared_ptr< ToVLevelConverter > getPressureConverter(const boost::shared_ptr< CDMReader > &reader, size_t unLimDimPos, boost::shared_ptr< const CoordinateSystem > cs, size_t nx, size_t ny, size_t nt) const
virtual std::string getName() const
Definition: Pressure.h:59
virtual ~Pressure()
Definition: Pressure.h:50
Pressure(const std::string &pressure)
Definition: Pressure.h:49
virtual bool isComplete() const
Definition: Pressure.h:62
const std::string pressure
name of the pressure variable
Definition: Pressure.h:48
#define MIFI_VINT_PRESSURE
vertical interpolation type
Definition: mifi_constants.h:168