All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.dawnsci.nexus.NXoff_geometry Maven / Gradle / Ivy

/*-
 *******************************************************************************
 * Copyright (c) 2015 Diamond Light Source Ltd.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * This file was auto-generated from the NXDL XML definition.
 *******************************************************************************/

package org.eclipse.dawnsci.nexus;

import org.eclipse.dawnsci.analysis.api.tree.DataNode;
import org.eclipse.january.dataset.IDataset;

/**
 * Geometry (shape) description.
 * The format closely matches the Object File Format (OFF) which can be output
 * by most CAD software.
 * It can be used to describe the shape of any beamline component, including detectors.
 * In the case of detectors it can be used to define the shape of a single pixel, or,
 * if the pixel shapes are non-uniform, to describe the shape of the whole detector.
 * 

Symbols: * These symbols will be used below.

    *
  • i * number of vertices in the shape
  • *
  • k * number of faces in the shape
  • *
  • l * number faces which are detecting surfaces or form the boundary of * detecting volumes

* */ public interface NXoff_geometry extends NXobject { public static final String NX_VERTICES = "vertices"; public static final String NX_WINDING_ORDER = "winding_order"; public static final String NX_FACES = "faces"; public static final String NX_DETECTOR_FACES = "detector_faces"; /** * List of x,y,z coordinates for vertices. * The origin of the coordinates is the position of the parent component, for * example the NXdetector which the geometry describes. * If the shape describes a single pixel for a detector with uniform pixel * shape then the origin is the position of each pixel as described by the * ``x/y/z_pixel_offset`` datasets in ``NXdetector``. *

* Type: NX_NUMBER * Units: NX_LENGTH * Dimensions: 1: i; 2: 3; *

* * @return the value. */ public IDataset getVertices(); /** * List of x,y,z coordinates for vertices. * The origin of the coordinates is the position of the parent component, for * example the NXdetector which the geometry describes. * If the shape describes a single pixel for a detector with uniform pixel * shape then the origin is the position of each pixel as described by the * ``x/y/z_pixel_offset`` datasets in ``NXdetector``. *

* Type: NX_NUMBER * Units: NX_LENGTH * Dimensions: 1: i; 2: 3; *

* * @param vertices the vertices */ public DataNode setVertices(IDataset vertices); /** * List of x,y,z coordinates for vertices. * The origin of the coordinates is the position of the parent component, for * example the NXdetector which the geometry describes. * If the shape describes a single pixel for a detector with uniform pixel * shape then the origin is the position of each pixel as described by the * ``x/y/z_pixel_offset`` datasets in ``NXdetector``. *

* Type: NX_NUMBER * Units: NX_LENGTH * Dimensions: 1: i; 2: 3; *

* * @return the value. */ public Number getVerticesScalar(); /** * List of x,y,z coordinates for vertices. * The origin of the coordinates is the position of the parent component, for * example the NXdetector which the geometry describes. * If the shape describes a single pixel for a detector with uniform pixel * shape then the origin is the position of each pixel as described by the * ``x/y/z_pixel_offset`` datasets in ``NXdetector``. *

* Type: NX_NUMBER * Units: NX_LENGTH * Dimensions: 1: i; 2: 3; *

* * @param vertices the vertices */ public DataNode setVerticesScalar(Number vertices); /** * List of indices of vertices in the ``vertices`` dataset to form each face, * right-hand rule for face normal. *

* Type: NX_INT * Dimensions: 1: j; *

* * @return the value. */ public IDataset getWinding_order(); /** * List of indices of vertices in the ``vertices`` dataset to form each face, * right-hand rule for face normal. *

* Type: NX_INT * Dimensions: 1: j; *

* * @param winding_order the winding_order */ public DataNode setWinding_order(IDataset winding_order); /** * List of indices of vertices in the ``vertices`` dataset to form each face, * right-hand rule for face normal. *

* Type: NX_INT * Dimensions: 1: j; *

* * @return the value. */ public Long getWinding_orderScalar(); /** * List of indices of vertices in the ``vertices`` dataset to form each face, * right-hand rule for face normal. *

* Type: NX_INT * Dimensions: 1: j; *

* * @param winding_order the winding_order */ public DataNode setWinding_orderScalar(Long winding_order); /** * The start index in ``winding_order`` for each face. *

* Type: NX_INT * Dimensions: 1: k; *

* * @return the value. */ public IDataset getFaces(); /** * The start index in ``winding_order`` for each face. *

* Type: NX_INT * Dimensions: 1: k; *

* * @param faces the faces */ public DataNode setFaces(IDataset faces); /** * The start index in ``winding_order`` for each face. *

* Type: NX_INT * Dimensions: 1: k; *

* * @return the value. */ public Long getFacesScalar(); /** * The start index in ``winding_order`` for each face. *

* Type: NX_INT * Dimensions: 1: k; *

* * @param faces the faces */ public DataNode setFacesScalar(Long faces); /** * List of pairs of index in the "faces" dataset and detector id. Face IDs in * the first column, and corresponding detector IDs in the second column. * This dataset should only be used only if the ``NXoff_geometry`` group is * describing a detector. * Note, the face indices must be in ascending order but need not be * consecutive as not every face in faces need be a detecting surface or * boundary of detecting volume. * Can use multiple entries with the same detector id to define detector volumes. *

* Type: NX_INT * Dimensions: 1: l; 2: 2; *

* * @return the value. */ public IDataset getDetector_faces(); /** * List of pairs of index in the "faces" dataset and detector id. Face IDs in * the first column, and corresponding detector IDs in the second column. * This dataset should only be used only if the ``NXoff_geometry`` group is * describing a detector. * Note, the face indices must be in ascending order but need not be * consecutive as not every face in faces need be a detecting surface or * boundary of detecting volume. * Can use multiple entries with the same detector id to define detector volumes. *

* Type: NX_INT * Dimensions: 1: l; 2: 2; *

* * @param detector_faces the detector_faces */ public DataNode setDetector_faces(IDataset detector_faces); /** * List of pairs of index in the "faces" dataset and detector id. Face IDs in * the first column, and corresponding detector IDs in the second column. * This dataset should only be used only if the ``NXoff_geometry`` group is * describing a detector. * Note, the face indices must be in ascending order but need not be * consecutive as not every face in faces need be a detecting surface or * boundary of detecting volume. * Can use multiple entries with the same detector id to define detector volumes. *

* Type: NX_INT * Dimensions: 1: l; 2: 2; *

* * @return the value. */ public Long getDetector_facesScalar(); /** * List of pairs of index in the "faces" dataset and detector id. Face IDs in * the first column, and corresponding detector IDs in the second column. * This dataset should only be used only if the ``NXoff_geometry`` group is * describing a detector. * Note, the face indices must be in ascending order but need not be * consecutive as not every face in faces need be a detecting surface or * boundary of detecting volume. * Can use multiple entries with the same detector id to define detector volumes. *

* Type: NX_INT * Dimensions: 1: l; 2: 2; *

* * @param detector_faces the detector_faces */ public DataNode setDetector_facesScalar(Long detector_faces); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy