Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
E2Sextupole
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dt
ds
E2Sextupole
Commits
6561dcd2
Commit
6561dcd2
authored
1 month ago
by
Claudio Scafuri
Browse files
Options
Downloads
Patches
Plain Diff
CEV correction and resonance strength
parent
83f12f30
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/E2Sextupole.cpp
+15
-1
15 additions, 1 deletion
src/E2Sextupole.cpp
with
15 additions
and
1 deletion
src/E2Sextupole.cpp
+
15
−
1
View file @
6561dcd2
...
...
@@ -1356,6 +1356,20 @@ void E2Sextupole::write_CEVCorrectionStrength(Tango::WAttribute &attr)
/*----- PROTECTED REGION ID(E2Sextupole::write_CEVCorrectionStrength) ENABLED START -----*/
/* clang-format on */
// Add your own code
omni_mutex_lock
guardio
(
iomutex
);
Tango
::
DevDouble
newStrength
;
//resonanceAtt->get_write_value(_resStrength);
newStrength
=
w_val
+
wValCevResStrength
+
cev_design_strength
;
std
::
vector
<
double
>
req_strength
;
std
::
vector
<
double
>
curr_out
;
req_strength
.
push_back
(
newStrength
);
cev
->
compute_currents
(
magnet_rigidity
,
req_strength
,
curr_out
);
Tango
::
DeviceAttribute
watt
(
"Current"
,
curr_out
[
0
]);
cev_current_dev
->
write_attribute
(
watt
);
wValCevCorrStrength
=
w_val
;
cev_set_strength
[
0
]
=
newStrength
;
cevStrengthAtt
->
set_write_value
(
cev_set_strength
[
0
]);
/* clang-format off */
/*----- PROTECTED REGION END -----*/
// E2Sextupole::write_CEVCorrectionStrength
}
...
...
@@ -1408,7 +1422,7 @@ void E2Sextupole::write_CEVResonanceStrength(Tango::WAttribute &attr)
wValCevResStrength
=
w_val
;
*
attr_CEVResonanceStrength_read
=
w_val
;
cev_set_strength
[
0
]
=
newStrength
;
cevStrengthAtt
->
set_write_value
(
ce
h
_set_strength
[
0
]);
cevStrengthAtt
->
set_write_value
(
ce
v
_set_strength
[
0
]);
/* clang-format off */
/*----- PROTECTED REGION END -----*/
// E2Sextupole::write_CEVResonanceStrength
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment