-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFunctionOfPos.cpp
240 lines (201 loc) · 6.53 KB
/
FunctionOfPos.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/* "Function of Position" Class
* contain any value(pos) for an accelerator ring, e.g. Twiss-, orbit- or field-data.
*
* Copyright (C) 2016 Jan Felix Schmidt <[email protected]>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*
* !!! Convention:
* !!! first "turn" = 1
* !!! first "sample" = 0
*/
#include <string>
#include <sstream>
#include "FunctionOfPos.hpp"
using namespace std;
using namespace pal;
//AccAxis string output
string pal::axis_string(AccAxis a)
{
switch (a) {
case x:
return "horizontal";
case z:
return "vertical";
case s:
return "longitudinal";
}
return "Please implement this AccAxis in axis_string() in FunctionOfPos.cpp.";
}
// =========== template specialization ============
//double
template <>
vector<double> FunctionOfPos<double>::getVector(double stepwidth,AccAxis) const
{
// axis not needed, if only 1D values exist.
vector<double> out;
//data values, no interpolation
if (stepwidth == 0.) {
for (const_FoPiterator it=data.begin(); it!=data.end(); it++)
out.push_back( it->second );
}
//interpolation: equidistant data values
else {
for (double pos=0; pos<turns()*circumference(); pos+=stepwidth)
out.push_back( this->interp(pos) );
}
return out;
}
//int
template <>
vector<double> FunctionOfPos<int>::getVector(double stepwidth,AccAxis) const
{
// axis not needed, if only 1D values exist.
vector<double> out;
//data values, no interpolation
if (stepwidth == 0.) {
for (const_FoPiterator it=data.begin(); it!=data.end(); it++)
out.push_back( double(it->second) );
}
//interpolation: equidistant data values
else {
for (double pos=0; pos<turns()*circumference(); pos+=stepwidth)
out.push_back( double(this->interp(pos)) );
}
return out;
}
//AccPair
template <>
vector<double> FunctionOfPos<AccPair>::getVector(double stepwidth,AccAxis axis) const
{
vector<double> out;
switch(axis) {
case s:
throw invalid_argument("FunctionOfPos<AccPair>::getVector(): s coordinate is not defined for AccPair. Use AccTriple instead.");
break;
case x:
if (stepwidth == 0.) { //data values, no interpolation
for (const_FoPiterator it=data.begin(); it!=data.end(); it++)
out.push_back( it->second.x );
}
else { //interpolation: equidistant data values
for (double pos=0; pos<turns()*circumference(); pos+=stepwidth)
out.push_back( this->interp(pos).x );
}
break;
case z:
if (stepwidth == 0.) { //data values, no interpolation
for (const_FoPiterator it=data.begin(); it!=data.end(); it++)
out.push_back( it->second.z );
}
else { //interpolation: equidistant data values
for (double pos=0; pos<turns()*circumference(); pos+=stepwidth)
out.push_back( this->interp(pos).z );
}
break;
}
return out;
}
//AccTriple
template <>
vector<double> FunctionOfPos<AccTriple>::getVector(double stepwidth,AccAxis axis) const
{
vector<double> out;
switch(axis) {
case s:
if (stepwidth == 0.) { //data values, no interpolation
for (const_FoPiterator it=data.begin(); it!=data.end(); it++)
out.push_back( it->second.s );
}
else { //interpolation: equidistant data values
for (double pos=0; pos<turns()*circumference(); pos+=stepwidth)
out.push_back( this->interp(pos).s );
}
break;
case x:
if (stepwidth == 0.) { //data values, no interpolation
for (const_FoPiterator it=data.begin(); it!=data.end(); it++)
out.push_back( it->second.x );
}
else { //interpolation: equidistant data values
for (double pos=0; pos<turns()*circumference(); pos+=stepwidth)
out.push_back( this->interp(pos).x );
}
break;
case z:
if (stepwidth == 0.) { //data values, no interpolation
for (const_FoPiterator it=data.begin(); it!=data.end(); it++)
out.push_back( it->second.z );
}
else { //interpolation: equidistant data values
for (double pos=0; pos<turns()*circumference(); pos+=stepwidth)
out.push_back( this->interp(pos).z );
}
break;
}
return out;
}
//import closed orbit from ELSA BPM-measurement at time t/ms
template <>
void FunctionOfPos<AccPair>::elsaClosedOrbit(ELSASpuren &spuren, unsigned int t)
{
int i;
char msg[1024];
AccPair otmp;
this->clear(); //delete old-BPM-data
for (i=0; i<NBPMS; i++) {
if (t > spuren.bpms[i].time.size()) {
snprintf(msg, 1024, "ERROR: FunctionOfPos::elsaClosedOrbit: No ELSA BPM%02d data available for %d ms.\n", i+1, t);
throw palatticeError(msg);
}
otmp.x = spuren.bpms[i].time[t].x / 1000; // unit mm -> m
otmp.z = spuren.bpms[i].time[t].z / 1000;
this->set(otmp, spuren.bpms[i].pos);
}
//metadata
stringstream spureninfo;
spureninfo << t << "ms in "<<spuren.spurenFolder;
info.add("ELSA Closed Orbit from", spureninfo.str());
}
//import closed orbit from madx twiss file or elegant .clo file
template<>
void FunctionOfPos<AccPair>::simToolClosedOrbit(SimToolInstance &s)
{
if (s.tool==pal::madx)
readSimToolColumn(s,s.orbit(),"S","X","Y");
else if (s.tool==pal::elegant)
readSimToolColumn(s,s.orbit(),"s","x","y");
//metadata
// info.add("Closed Orbit from", s.tool_string());
// info.add("Orbit Source file", orbitFile);
//init interpolation (needed here for objects passed as const)
if (!this->ready) {
this->init();
}
//stdout info
cout << "* "<<size()<<" orbit sampling points read"<<endl
<<" from "<<s.orbit() << endl;
}
template<>
void FunctionOfPos<AccPair>::simToolTrajectory(SimToolInstance &s, unsigned int particle)
{
cout << "Initializing trajectory... " << endl;
if (s.tool==pal::madx)
readSimToolParticleColumn(s,particle,"X","Y");
else if (s.tool==pal::elegant)
readSimToolParticleColumn(s,particle,"x","y");
cout << "* Trajectory of particle "<<particle<<" read at "<<samplesInTurn(1)
<<" observation points for "<<turns()<<" turns"<<endl;
}