-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpoint.cpp
71 lines (67 loc) · 1.5 KB
/
point.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#include "point.h"
Point::Point(const QStringList & list)
{
freq = list[0];
ReZ = list[1];
ImZ = list[2];
Z = list[3];
Phase = list[4];
time = list[5];
Ewe = list[6];
I = list[7];
Cs = list[8];
Cs_2 = list[9];
Cp = list[10];
Cp_2 = list[11];
cycleNumber = list[12];
IRange = list[13];
EweMod = list[14];
IMod = list[15];
ReY = list[16];
ImY = list[17];
Y = list[18];
PhaseY = list[19];
}
//Point::Point(Point && _point)
//{
// freq = _point.freq;
// ReZ = _point.ReZ;
// ImZ = _point.ImZ;
// Z = _point.Z;
// Phase = _point.Phase;
// time = _point.time;
// Ewe = _point.Ewe;
// I = _point.I;
// Cs = _point.Cs;
// Cs_2 = _point.Cs_2;
// Cp = _point.Cp;
// Cp_2 = _point.Cp_2;
// cycleNumber = _point.cycleNumber;
// IRange = _point.IRange;
// EweMod = _point.EweMod;
// IMod = _point.IMod;
// ReY = _point.ReY;
// ImY = _point.ImY;
// Y = _point.Y;
// PhaseY = _point.PhaseY;
// freq = nullptr;
// ReZ = nullptr;
// ImZ = nullptr;
// Z = nullptr;
// Phase = nullptr;
// time = nullptr;
// Ewe = nullptr;
// I = nullptr;
// Cs = nullptr;
// Cs_2 = nullptr;
// Cp = nullptr;
// Cp_2 = nullptr;
// cycleNumber = nullptr;
// IRange = nullptr;
// EweMod = nullptr;
// IMod = nullptr;
// ReY = nullptr;
// ImY = nullptr;
// Y = nullptr;
// PhaseY = nullptr;
//}