View Javadoc
1   package org.hps.recon.tracking;
2   
3   import java.util.Collection;
4   //import org.hps.conditions.deprecated.HPSSVTCalibrationConstants.ChannelConstants;
5   import org.lcsim.event.RawTrackerHit;
6   
7   /**
8    *
9    * @author Matt Graham
10   */
11  // TODO: Add class documentation.
12  public interface ShaperFitAlgorithm {
13  
14      //===> public Collection<ShapeFitParameters> fitShape(RawTrackerHit rth, ChannelConstants constants);
15      public Collection<ShapeFitParameters> fitShape(RawTrackerHit rawHit, PulseShape shape);
16  
17      public void setDebug(boolean debug);
18  }