My Project
 All Classes Files Functions Variables Enumerations Enumerator Friends Macros Pages
TipperData.h
Go to the documentation of this file.
1 #ifndef GCP_UTIL_TIPPERDATA_H
2 #define GCP_UTIL_TIPPERDATA_H
3 
11 #include "gcp/util/common/NetStruct.h"
12 
13 namespace gcp {
14  namespace util {
15 
16  class TipperData : public NetStruct {
17  public:
18 
22  TipperData();
23 
27  virtual ~TipperData();
28 
29  unsigned mjdDays_;
30  unsigned mjdMs_;
31  double filter_;
32  double tHot_;
33  double tWarm_;
34  double tAmb_;
35  double tChop_;
36  double tInt_;
37  double tSnork_;
38  double tAtm_;
39  double tau_;
40  double tSpill_;
41  double r_;
42  double mse_;
43 
44  // Write the contents of this object to an ostream
45 
46  friend std::ostream&
47  gcp::util::operator<<(std::ostream& os, TipperData& data);
48 
49  std::string header();
50 
51  }; // End class TipperData
52 
53 
54  } // End namespace util
55 } // End namespace gcp
56 
57 
58 #endif // End #ifndef GCP_UTIL_TIPPERDATA_H
std::string header()
Definition: TipperData.cc:60
Definition: TipperData.h:16
Definition: NetStruct.h:21
virtual ~TipperData()
Definition: TipperData.cc:33
TipperData()
Definition: TipperData.cc:13