Class Reference for E1039 Core & Analysis Software
RTCurve.h
Go to the documentation of this file.
1 #ifndef __RT_CURVE_H__
2 #define __RT_CURVE_H__
3 class TSpline3;
4 class TGraph;
5 
7 class RTCurve {
8  int m_n_pt;
9  double* m_array_r;
10  double* m_array_t;
11  double m_dr;
12 
13  bool m_t2r_changed;
14  bool m_t2dr_changed;
15  TSpline3* m_spl_t2r; // Must access via GetT2RSpline().
16  TGraph* m_gr_t2dr; // Must access via GetT2DRGraph().
17 
18  public:
19  RTCurve(const int n_pt);
20  virtual ~RTCurve();
21 
22  int GetNumPoints() const { return m_n_pt; }
23  void SetPoint(const int i_pt, const double r, const double t);
24  void GetPoint(const int i_pt, double& r, double& t) const;
25 
26  void SetRWidth(const double dr);
27  double GetRWidth() const;
28 
29  double GetTMin() const { return m_array_t[0]; }
30  double GetTMax() const { return m_array_t[m_n_pt-1]; }
31  double GetRMax() const { return m_array_r[0]; }
32 
33  double EvalR(const double t);
34 
35  TSpline3* GetT2RSpline();
36  TGraph* GetT2DRGraph();
37 
38  private:
39  TSpline3* CreateT2RSpline() const;
40  TGraph* CreateT2DRGraph() const;
41 };
42 
43 #endif // __RT_CURVE_H__
Class to represent R-T curve.
Definition: RTCurve.h:7
double GetRWidth() const
Definition: RTCurve.cc:48
virtual ~RTCurve()
Definition: RTCurve.cc:19
double GetRMax() const
Definition: RTCurve.h:31
double GetTMax() const
Definition: RTCurve.h:30
double EvalR(const double t)
Definition: RTCurve.cc:53
RTCurve(const int n_pt)
Definition: RTCurve.cc:7
void SetPoint(const int i_pt, const double r, const double t)
Definition: RTCurve.cc:27
TSpline3 * GetT2RSpline()
Definition: RTCurve.cc:63
void SetRWidth(const double dr)
Definition: RTCurve.cc:42
void GetPoint(const int i_pt, double &r, double &t) const
Definition: RTCurve.cc:35
int GetNumPoints() const
Definition: RTCurve.h:22
double GetTMin() const
Definition: RTCurve.h:29
TGraph * GetT2DRGraph()
Definition: RTCurve.cc:73