Print

Print


Commit in lcsim/src/org/lcsim/recon/muon on MAIN
CoilSubLayer.java+44added 1.1
CM,GL: New class to store info relevant to stepping through the coil

lcsim/src/org/lcsim/recon/muon
CoilSubLayer.java added at 1.1
diff -N CoilSubLayer.java
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ CoilSubLayer.java	6 Dec 2005 22:33:38 -0000	1.1
@@ -0,0 +1,44 @@
+
+package org.lcsim.recon.muon;
+
+public class CoilSubLayer {
+
+    // constructor
+    public CoilSubLayer(String material,
+			double thickness,
+			double rmin,
+			double zmax,
+			double dedx) {
+	_material = material;
+	_thickness = thickness;
+	_rmin = rmin;
+	_zmax = zmax;
+	_dedx = dedx;
+    }
+
+    public double getRmin() {
+	return _rmin;
+    }
+
+    public double getZmax() {
+	return _zmax;
+    }
+
+    public double getThickness() {
+	return _thickness;
+    }
+
+    public double getdEdx() {
+	return _dedx;
+    }
+
+    public String getMaterial() {
+	return _material;
+    }
+
+    private String _material;
+    private double _thickness;
+    private double _rmin;
+    private double _zmax;
+    private double _dedx;
+}
CVSspam 0.2.8