1 // Copyright 2004-2005, FreeHEP.
2 package hep.wired.util;
3
4 /***
5 * Constants for indices into UVW arrays.
6 *
7 * @author Mark Donszelmann
8 * @version $Id: UVWindices.java 2083 2005-07-20 17:16:52Z duns $
9 */
10
11 public interface UVWindices {
12
13 /***
14 * Index for U in uvw
15 */
16 public final static int U = 0;
17
18 /***
19 * Index for V in uvw
20 */
21 public final static int V = 1;
22
23 /***
24 * Index for W in uvw
25 */
26 public final static int W = 2;
27
28 }