Skip to content
Snippets Groups Projects
Commit b32b904f authored by Alessandro Abrami's avatar Alessandro Abrami
Browse files

2024/08/12: tkt22322 implementato disattivabile via prop.

parent 9ce967b4
Branches master
Tags 1.2.2
No related merge requests found
......@@ -665,11 +665,29 @@ void EpuFG::write_Phases(Tango::WAttribute &attr)
(const char *)"Wrong number of vales",
(const char *)"Wrong number of vales",
(const char *)"EpuFG::write_Phases()");
Tango::DevDouble R = w_val[0];
Tango::DevDouble P = w_val[1];
Tango::DevDouble J = w_val[2];
if (tkt22322_enable){
if (R >= 0.0 ) {
P = -fabs(P);
J = -fabs(J);
} else {
P = fabs(P);
J = fabs(J);
}
}
vector<double> pos(3);
/*
pos[0] = w_val[0] + w_val[1];
pos[1] = w_val[1] + w_val[2];
pos[2] = w_val[0] + w_val[2];
*/
pos[0] = R + P;
pos[1] = P + J;
pos[2] = R + J;
vector<string> ph(3);
ph[0] = "ROW";
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment