View Javadoc

1   /*
2    * BiasSurface.java
3    *
4    * Created on November 29, 2007, 11:13 AM
5    *
6    * To change this template, choose Tools | Template Manager
7    * and open the template in the editor.
8    */
9   
10  package org.lcsim.detector.tracker.silicon;
11  
12  import org.lcsim.detector.solids.Polygon3D;
13  
14  /**
15   *
16   * @author tknelson
17   */
18  public class BiasSurface
19  {
20      
21      Polygon3D _surface;
22      double _voltage;
23      
24      /** Creates a new instance of BiasSurface */
25      public BiasSurface(Polygon3D surface, double voltage)
26      {
27          _surface = surface;
28          _voltage = voltage;
29      }
30      
31      public Polygon3D getSurface()
32      {
33          return _surface;
34      }
35      
36      public double getVoltage()
37      {
38          return _voltage;
39      }
40      
41  }