Print

Print


Commit in trf/src/main/java/org/lcsim/recon/tracking/spacegeom on MAIN
SpacePointTensor.java+26-261.1 -> 1.2
expose methods

trf/src/main/java/org/lcsim/recon/tracking/spacegeom
SpacePointTensor.java 1.1 -> 1.2
diff -u -r1.1 -r1.2
--- SpacePointTensor.java	6 Jul 2011 17:22:36 -0000	1.1
+++ SpacePointTensor.java	6 Jul 2011 20:21:01 -0000	1.2
@@ -4,7 +4,7 @@
  *
  * @author Norman A. Graf
  *
- * @version $Id: SpacePointTensor.java,v 1.1 2011/07/06 17:22:36 ngraf Exp $
+ * @version $Id: SpacePointTensor.java,v 1.2 2011/07/06 20:21:01 ngraf Exp $
  */
 public class SpacePointTensor extends SpacePoint
 {
@@ -67,53 +67,53 @@
     }
 
     // Cartesian components.
-    double t_x_x()
+    public double t_x_x()
     {
         return _txx;
     }
 
-    double t_x_y()
+    public double t_x_y()
     {
         return _txy;
     }
 
-    double t_x_z()
+    public double t_x_z()
     {
         return _txz;
     }
 
-    double t_y_x()
+    public double t_y_x()
     {
         return _tyx;
     }
 
-    double t_y_y()
+    public double t_y_y()
     {
         return _tyy;
     }
 
-    double t_y_z()
+    public double t_y_z()
     {
         return _tyz;
     }
 
-    double t_z_x()
+    public double t_z_x()
     {
         return _tzx;
     }
 
-    double t_z_y()
+    public double t_z_y()
     {
         return _tzy;
     }
 
-    double t_z_z()
+    public double t_z_z()
     {
         return _tzz;
     }
 
 // Return the rxy, rxy cylindrical component.
-    double t_rxy_rxy()
+    public double t_rxy_rxy()
     {
         double c = cosPhi();
         double s = sinPhi();
@@ -122,7 +122,7 @@
 //**********************************************************************
 
 // Return the rxy, phi cylindrical component.
-    double t_rxy_phi()
+    public double t_rxy_phi()
     {
         double c = cosPhi();
         double s = sinPhi();
@@ -131,7 +131,7 @@
 
 //**********************************************************************
 // Return the rxy, z cylindrical component.
-    double t_rxy_z()
+    public double t_rxy_z()
     {
         double c = cosPhi();
         double s = sinPhi();
@@ -140,7 +140,7 @@
 
 //**********************************************************************
 // Return the phi, rxy cylindrical or spherical component.
-    double t_phi_rxy()
+    public double t_phi_rxy()
     {
         double c = cosPhi();
         double s = sinPhi();
@@ -149,7 +149,7 @@
 
 //**********************************************************************
 // Return the phi, phi cylindrical component.
-    double t_phi_phi()
+    public double t_phi_phi()
     {
         double c = cosPhi();
         double s = sinPhi();
@@ -158,7 +158,7 @@
 
 //**********************************************************************
 // Return the phi, z cylindrical component.
-    double t_phi_z()
+    public double t_phi_z()
     {
         double c = cosPhi();
         double s = sinPhi();
@@ -167,7 +167,7 @@
 
 //**********************************************************************
 // Return the z, rxy cylindrical component.
-    double t_z_rxy()
+    public double t_z_rxy()
     {
         double c = cosPhi();
         double s = sinPhi();
@@ -176,7 +176,7 @@
 
 //**********************************************************************
 // Return the z, phi cylindrical component.
-    double t_z_phi()
+    public double t_z_phi()
     {
         double c = cosPhi();
         double s = sinPhi();
@@ -185,7 +185,7 @@
 
 //**********************************************************************
 // Return the rxyz, rxyz spherical component.
-    double t_rxyz_rxyz()
+    public double t_rxyz_rxyz()
     {
         double c_phi = cosPhi();
         double s_phi = sinPhi();
@@ -199,7 +199,7 @@
 
 //**********************************************************************
 // Return the rxyz, theta spherical component.
-    double t_rxyz_theta()
+    public double t_rxyz_theta()
     {
         double c_phi = cosPhi();
         double s_phi = sinPhi();
@@ -213,7 +213,7 @@
 
 //**********************************************************************
 // Return the rxyz, phi spherical component.
-    double t_rxyz_phi()
+    public double t_rxyz_phi()
     {
         double c_phi = cosPhi();
         double s_phi = sinPhi();
@@ -226,7 +226,7 @@
 
 //**********************************************************************
 // Return the theta, rxyz spherical component.
-    double t_theta_rxyz()
+    public double t_theta_rxyz()
     {
         double c_phi = cosPhi();
         double s_phi = sinPhi();
@@ -240,7 +240,7 @@
 
 //**********************************************************************
 // Return the theta, theta spherical component.
-    double t_theta_theta()
+    public double t_theta_theta()
     {
         double c_phi = cosPhi();
         double s_phi = sinPhi();
@@ -254,7 +254,7 @@
 
 //**********************************************************************
 // Return the theta, phi spherical component.
-    double t_theta_phi()
+    public double t_theta_phi()
     {
         double c_phi = cosPhi();
         double s_phi = sinPhi();
@@ -267,7 +267,7 @@
 
 //**********************************************************************
 // Return the phi, rxyz spherical component.
-    double t_phi_rxyz()
+    public double t_phi_rxyz()
     {
         double c_phi = cosPhi();
         double s_phi = sinPhi();
@@ -281,7 +281,7 @@
 
 //**********************************************************************
 // Return the phi, theta spherical component.
-    double t_phi_theta()
+    public double t_phi_theta()
     {
         double c_phi = cosPhi();
         double s_phi = sinPhi();
CVSspam 0.2.8