1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 <2016> 2017 2018 2019 2020 2021 2022 2023 2024 2025 | Index | 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 <2016> 2017 2018 2019 2020 2021 2022 2023 2024 2025 |
<== Date ==> | <== Thread ==> |
---|
Subject: | Re: Drawing on XY graph widget without the use of a PV in CSS |
From: | Márcio Paduan Donadio <[email protected]> |
To: | "[email protected]" <[email protected]> |
Cc: | Márcio Paduan Donadio <[email protected]> |
Date: | Mon, 8 Aug 2016 12:38:06 +0000 |
You can use loc variables in X PV and Y PV parameters. Eg: loc://x and loc://y. Inside the script you can do something like this: from java.util import Arrays from jarray import zeros from java.lang import Double x = zeros(NUM_OF_STEPS, Double) y = zeros(NUM_OF_STEPS, Double) for i in range (NUM_OF_STEPS): x[i] = 0 y[i] = 0 # Do processing.... pvs[0].setValue(x) pvs[1].setValue(y) -- Márcio Paduan Donadio Engenheiro de Computação - Software de Operação das Linhas de Luz Laboratório Nacional de Luz Síncrotron – (LNLS) Centro Nacional de Pesquisa em Energia e Materiais (CNPEM) + 55 (19) 3512-3520 - [email protected] www.lnls.cnpem.br ------------------------------------------------------------------ Hello Is it possible to draw some data on an XY graph widget from a script/rule without using a PV? I mainly tried setting the property 'pv_value' but nothing appears on the graph. I'm
not sure if this is even possible or not. The thing is I will receive a waveform PV value and I want to do some processing on it then displaying the output on the XY graph. Best Regards, |