View Javadoc

1   /*
2    * ResolutionModel.java
3    *
4    * Created on February 15, 2008, 6:27 PM
5    *
6    * To change this template, choose Tools | Template Manager
7    * and open the template in the editor.
8    */
9   
10  package org.lcsim.recon.tracking.digitization.sisim;
11  
12  import org.lcsim.detector.tracker.silicon.SiSensorElectrodes;
13  
14  /**
15   *
16   * @author tknelson
17   */
18  public interface ResolutionModel
19  {
20      
21      double calculateResolution(int iaxis, SiTrackerHit hit);
22      
23  }