|
@@ -45,26 +45,26 @@ int main(int argc, char** argv) {
|
45
|
45
|
|
46
|
46
|
|
47
|
47
|
|
48
|
|
- std::ofstream dout = std::ofstream(std::string("Tx")+std::string(argv[2])+std::string("Rx-")+std::string(argv[3])+std::string(".dat"));
|
49
|
|
- dout << "# Transmitters: ";
|
50
|
|
- for (auto lp : tx) {
|
51
|
|
- dout << lp << "\t";
|
52
|
|
- }
|
53
|
|
- dout << "\n# Receivers: ";
|
54
|
|
- for (auto lp : rx) {
|
55
|
|
- dout << lp << "\t";
|
56
|
|
- }
|
57
|
|
- dout << "\n# Tolerance: " << Kern->GetTolerance() << std::endl;
|
58
|
|
- dout << Kern->GetInterfaces().transpose() << std::endl;
|
59
|
|
- dout << Kern->GetPulseDuration()*Kern->GetPulseCurrent().transpose() << std::endl;
|
60
|
|
- dout << "#real\n";
|
61
|
|
- dout << Kern->GetKernel().real() << std::endl;
|
62
|
|
- dout << "#imag\n";
|
63
|
|
- dout << Kern->GetKernel().imag() << std::endl;
|
64
|
|
- dout.close();
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
|
65
|
65
|
|
66
|
66
|
|
67
|
|
- std::ofstream out = std::ofstream(std::string("Tx")+std::string(argv[2])+std::string("Rx-")+std::string(argv[3])+std::string(".yaml"));
|
|
67
|
+ std::ofstream out = std::ofstream(std::string("Tx-")+std::string(argv[2])+std::string("_Rx-")+std::string(argv[3])+std::string(".yaml"));
|
68
|
68
|
out << *Kern;
|
69
|
69
|
out.close();
|
70
|
70
|
|