View Javadoc

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