Skip to content
Snippets Groups Projects
Commit 9201608d authored by Alessio Igor Bogani's avatar Alessio Igor Bogani
Browse files

Express pressure and current in scientific notation

parent 1e184e6c
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@
<archiveEvent fire="false" libCheckCriteria="false"/>
<dataReadyEvent fire="false" libCheckCriteria="true"/>
<status abstract="false" inherited="false" concrete="true" concreteHere="true"/>
<properties description="" label="" unit="A" standardUnit="" displayUnit="" format="" maxValue="9E-1" minValue="1E-10" maxAlarm="" minAlarm="" maxWarning="" minWarning="" deltaTime="" deltaValue=""/>
<properties description="" label="" unit="A" standardUnit="" displayUnit="" format="%1.2E" maxValue="9E-1" minValue="1E-10" maxAlarm="" minAlarm="" maxWarning="" minWarning="" deltaTime="" deltaValue=""/>
<readExcludedStates>UNKNOWN</readExcludedStates>
<readExcludedStates>INIT</readExcludedStates>
</dynamicAttributes>
......@@ -191,7 +191,7 @@
<archiveEvent fire="false" libCheckCriteria="false"/>
<dataReadyEvent fire="false" libCheckCriteria="true"/>
<status abstract="false" inherited="false" concrete="true" concreteHere="true"/>
<properties description="" label="" unit="mbar" standardUnit="" displayUnit="" format="" maxValue="" minValue="" maxAlarm="" minAlarm="" maxWarning="" minWarning="" deltaTime="" deltaValue=""/>
<properties description="" label="" unit="mbar" standardUnit="" displayUnit="" format="%1.2E" maxValue="" minValue="" maxAlarm="" minAlarm="" maxWarning="" minWarning="" deltaTime="" deltaValue=""/>
<readExcludedStates>UNKNOWN</readExcludedStates>
<readExcludedStates>INIT</readExcludedStates>
</dynamicAttributes>
......
......@@ -554,7 +554,7 @@ void Agilent4uhv::add_CurrentX_dynamic_attribute(string attname)
currentx_prop.set_unit("A");
// standard_unit not set for CurrentX
// display_unit not set for CurrentX
// format not set for CurrentX
currentx_prop.set_format("%1.2E");
currentx_prop.set_max_value("9E-1");
currentx_prop.set_min_value("1E-10");
// max_alarm not set for CurrentX
......@@ -611,7 +611,7 @@ void Agilent4uhv::add_PressureX_dynamic_attribute(string attname)
pressurex_prop.set_unit("mbar");
// standard_unit not set for PressureX
// display_unit not set for PressureX
// format not set for PressureX
pressurex_prop.set_format("%1.2E");
// max_value not set for PressureX
// min_value not set for PressureX
// max_alarm not set for PressureX
......
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