Skip to content
Snippets Groups Projects
Commit f4d47c7b authored by Claudio Scafuri's avatar Claudio Scafuri :speech_balloon:
Browse files

Merge branch 'development' into 'main'

Development

See merge request !2
parents 8aeb79e1 eb8a7463
Branches main
No related tags found
1 merge request!2Development
check and fix ResonanceStrength handling
fix units
\ No newline at end of file
......@@ -617,7 +617,7 @@ void E2Sextupole::write_ResonanceStrength(Tango::WAttribute &attr)
Tango::DeviceAttribute watt("Current", curr_out[0]);
current_dev->write_attribute(watt);
wValResStrength = w_val;
//*attr_ResonanceStrength_read = w_val;
*attr_ResonanceStrength_read = w_val;
set_strength[0] = newStrength;
strengthAtt->set_write_value(set_strength[0]);
/*----- PROTECTED REGION END -----*/ // E2Sextupole::write_ResonanceStrength
......@@ -793,7 +793,7 @@ void E2Sextupole::reset()
//--------------------------------------------------------
/**
* Command ResetResonanceStrength related method
* Description: Reset ResonanceStrength to 0
* Description: Transfer ResonanceStranght to CorrectionStrength and set ResonanceStrength to 0. Strngth is not modified
*
*/
//--------------------------------------------------------
......@@ -806,24 +806,16 @@ void E2Sextupole::reset_resonance_strength()
// Add your own code
/* clang-format off */
//force to 0 resonance strength
//transfer resonance strength to correction strength and than force to 0 resonance strength
omni_mutex_lock guardio(iomutex);
/*
Tango::DevDouble newStrength;
newStrength = wValCorrStrength;
std::vector<double> req_strength;
std::vector<double> curr_out;
req_strength.push_back(newStrength);
sextupole->compute_currents(magnet_rigidity, req_strength, curr_out);
Tango::DeviceAttribute watt("Current", curr_out[0]);
current_dev->write_attribute(watt);
*/
wValCorrStrength += wValResStrength;
wValResStrength = 0.0;
//set_strength[0] = newStrength;
//strengthAtt->set_write_value(set_strength[0]);
correctionAtt->set_write_value(wValCorrStrength);
*attr_CorrectionStrength_read = wValCorrStrength;
resonanceAtt->set_write_value(0.0);
*attr_ResonanceStrength_read = 0.0;
/*----- PROTECTED REGION END -----*/ // E2Sextupole::reset_resonance_strength
}
//--------------------------------------------------------
......
......@@ -286,7 +286,7 @@ public:
virtual bool is_Reset_allowed(const CORBA::Any &any);
/**
* Command ResetResonanceStrength related method
* Description: Reset ResonanceStrength to 0
* Description: Transfer ResonanceStranght to CorrectionStrength and set ResonanceStrength to 0. Strngth is not modified
*
*/
virtual void reset_resonance_strength();
......
......@@ -75,7 +75,7 @@
</argout>
<status abstract="false" inherited="false" concrete="true" concreteHere="true"/>
</commands>
<commands name="ResetResonanceStrength" description="Reset ResonanceStrength to 0" execMethod="reset_resonance_strength" displayLevel="OPERATOR" polledPeriod="0" isDynamic="false">
<commands name="ResetResonanceStrength" description="Transfer ResonanceStranght to CorrectionStrength and set ResonanceStrength to 0. Strngth is not modified" execMethod="reset_resonance_strength" displayLevel="OPERATOR" polledPeriod="0" isDynamic="false">
<argin description="">
<type xsi:type="pogoDsl:VoidType"/>
</argin>
......
......@@ -48,7 +48,7 @@ DECLARE_CRASH_HANDLER
int main(int argc,char *argv[])
{
INSTALL_CRASH_HANDLER
Tango::Util *tg;
Tango::Util *tg = nullptr;
try
{
// Initialise the device server
......
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