create or replace PACKAGE RICH700_par_query AS -- Last update: 06-JUl-2017 by JAM (j.adamczewski@gsi.de) -- converts pixel x and y location on detector plain to corresponding pmt id FUNCTION get_pmt_id ( p_pixel_col in NUMBER, p_pixel_row in NUMBER) RETURN NUMBER; -- converts pixel x and y location on detector plain to corresponding pixel index on the pmt FUNCTION get_pmt_pixel ( p_pixel_col in NUMBER, p_pixel_row in NUMBER) RETURN NUMBER; PRAGMA RESTRICT_REFERENCES (get_pmt_id, WNDS, WNPS, RNPS); PRAGMA RESTRICT_REFERENCES (get_pmt_pixel, WNDS, WNPS, RNPS); END RICH700_par_query; --/ --show errors