Package fr.soleil.comete.util

Examples of fr.soleil.comete.util.Point


        readArray.setId(sensor.getName());
        readArray.setDisplayName(sensor.getName());
        readArray.setFormat(getFormat());
        readArray.setReadOnly(true);
        for (int index = 0; index < readDoubleArray.length; ++index) {
            readArray.add(new Point(index, readDoubleArray[index]));
        }
        dataList.add(readArray);
        if (!getReadOnly()) {
            Double[] writeDoubleArray = report.getWriteSpectrumData();
            DataArray writeArray = new DataArray();
            writeArray.setId("Write part");
            writeArray.setDisplayName("Write part");
            writeArray.setFormat(getFormat());
            writeArray.setReadOnly(false);
            for (int index = 0; index < writeDoubleArray.length; ++index) {
                writeArray.add(new Point(index, writeDoubleArray[index]));
            }
            dataList.add(writeArray);
        }
        return dataList;
    }
View Full Code Here


                Object xComponent = getComponent(scanResult, xAxisComponent);

                List<IScanPoint> scanPointList = scanResult.getScanPointsList();
                Double xx;
                DataArray dataArray;
                Point point;
                ISensor sensor;
                IActuator actuator;
                for (IScanPoint scanPoint : scanPointList) {
                    if (xComponent instanceof IActuator) {
                        xx = scanPoint.getValue((IActuator) xComponent);
                    }
                    else if (xComponent instanceof ISensor) {
                        xx = scanPoint.getValue((ISensor) xComponent);
                    }
                    else {
                        xx = scanPoint.getTime();
                    }
                    for (Map.Entry<ISensor, DataArray> dataSensorEntry : dataSensorMap.entrySet()) {
                        sensor = dataSensorEntry.getKey();
                        dataArray = dataSensorEntry.getValue();
                        point = new Point(xx, scanPoint.getValue(sensor));
                        dataArray.add(point);
                    }
                    for (Map.Entry<IActuator, DataArray> dataActuatorEntry : dataActuatorMap
                            .entrySet()) {
                        actuator = dataActuatorEntry.getKey();
                        dataArray = dataActuatorEntry.getValue();
                        point = new Point(xx, scanPoint.getValue(actuator));
                        dataArray.add(point);
                    }
                    if (dataTime != null) {
                        point = new Point(xx, scanPoint.getTime());
                        dataTime.add(point);
                    }
                }
            }
        }
View Full Code Here

     */
  public static void testSameData(final DeviceProxy m_deviceProxy, final String[] xAttributeNames, final String[] yAttributeNames, final MultiAttributeDualSpectrumChart cb) {
   // TODO : GRAMER V : getData n'existe pas
        final List<DataArray> data = null;// cb.getData();
    ListIterator<Point> itt;
    Point pt;
    double[] xArray;
    double[] yArray;
    int j = 0;
    try {
      for (int i = 0; i < data.size(); i++) {
View Full Code Here

        readArray.setId(name);
        readArray.setDisplayName(name);
        readArray.setFormat(getFormat());
        readArray.setReadOnly(true);
        for (int index = 0; index < readDoubleArray.length; ++index) {
            readArray.add(new Point(index, readDoubleArray[index]));
        }
        dataList.add(readArray);
        if (!getReadOnly()) {
            Double[] writeDoubleArray = report.getWriteSpectrumData();
            DataArray writeArray = new DataArray();
            name = name + "[write part]";
            writeArray.setId(name);
            writeArray.setDisplayName(name);
            writeArray.setFormat(getFormat());
            writeArray.setReadOnly(false);
            for (int index = 0; index < writeDoubleArray.length; ++index) {
                writeArray.add(new Point(index, writeDoubleArray[index]));
            }
            dataList.add(writeArray);
        }
        return dataList;
    }
View Full Code Here

        readArray.setId(name);
        readArray.setDisplayName(name);
        readArray.setFormat(getFormat());
        readArray.setReadOnly(true);
        for (int index = 0; index < readDoubleArray.length; ++index) {
            readArray.add(new Point(index, readDoubleArray[index]));
        }
        dataList.add(readArray);
        if (!getReadOnly()) {
            Double[] writeDoubleArray = report.getWriteSpectrumData();
            DataArray writeArray = new DataArray();
            name = name + "[write part]";
            writeArray.setId(name);
            writeArray.setDisplayName(name);
            writeArray.setFormat(getFormat());
            writeArray.setReadOnly(false);
            for (int index = 0; index < writeDoubleArray.length; ++index) {
                writeArray.add(new Point(index, writeDoubleArray[index]));
            }
            dataList.add(writeArray);
        }
        return dataList;
    }
View Full Code Here

                Object xComponent = getComponent(scanResult, xAxisComponent);

                List<IScanPoint> scanPointList = scanResult.getScanPointsList();
                Double xx;
                DataArray dataArray;
                Point point;
                ISensor sensor;
                IActuator actuator;
                for (IScanPoint scanPoint : scanPointList) {
                    if (xComponent instanceof IActuator) {
                        xx = scanPoint.getValue((IActuator) xComponent);
                    }
                    else if (xComponent instanceof ISensor) {
                        xx = scanPoint.getValue((ISensor) xComponent);
                    }
                    else {
                        xx = scanPoint.getTime();
                    }
                    for (Map.Entry<ISensor, DataArray> dataSensorEntry : dataSensorMap.entrySet()) {
                        sensor = dataSensorEntry.getKey();
                        dataArray = dataSensorEntry.getValue();
                        point = new Point(xx, scanPoint.getValue(sensor));
                        dataArray.add(point);
                    }
                    for (Map.Entry<IActuator, DataArray> dataActuatorEntry : dataActuatorMap
                            .entrySet()) {
                        actuator = dataActuatorEntry.getKey();
                        dataArray = dataActuatorEntry.getValue();
                        point = new Point(xx, scanPoint.getValue(actuator));
                        dataArray.add(point);
                    }
                    if (dataTime != null) {
                        point = new Point(xx, scanPoint.getTime());
                        dataTime.add(point);
                    }
                }
            }
        }
View Full Code Here

TOP

Related Classes of fr.soleil.comete.util.Point

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.