View Javadoc

1   package org.lcsim.event;
2   
3   /**
4    * An interface to be implemented by SiliconTrackerHits
5    * @author tonyj
6    * @version $Id: SiliconTrackerHit.java,v 1.2 2006/06/28 04:48:30 jstrube Exp $
7    */
8   public interface SiliconTrackerHit
9   {
10     long getCellID();
11     int getTimestamp();
12     int getADCCounts();
13  }