View Javadoc

1   package org.lcsim.detector;
2   
3   import hep.physics.vec.Hep3Vector;
4   
5   /**
6    * Mixin interface for objects that have a Cartesian position.
7    * 
8    * @author Jeremy McCormick <jeremym@slac.stanford.edu>
9    */
10  public interface HasPosition
11  {
12      double[] getPosition();
13      Hep3Vector getPositionVec();
14  }