View Javadoc

1   package org.lcsim.event;
2       
3   /** TrackerData contains the corrected (calibrated) raw tracker data.
4    *  @see TrackerRawData
5    *  @see TrackerPulse
6    * 
7    * @author gaede
8    * @version $Id: TrackerData.java,v 1.2 2008/05/23 06:53:35 jeremy Exp $
9    */
10  
11  public interface TrackerData 
12  {
13      /** Returns the first detector specific (geometrical) cell id.
14       */
15      long getCellID();
16  
17      /** Returns a time measurement associated with the adc values, e.g. the 
18       *  t0 of the spectrum for the TPC. Subdetector dependent.
19       */
20      double getTime();
21  
22      /** The corrected (calibrated) FADC spectrum. 
23       */
24      double[] getChargeValues();
25  } // class or interface