@@ -13,73 +13,73 @@ public class TrackProjection {
1313 /**
1414 * Intersection point of the track with the middle surface of the bar.
1515 */
16- private Point3D _BarIntersect = new Point3D ();
16+ private Point3D barIntersect = new Point3D ();
1717
1818 /**
1919 * Intersection point of the track with the middle surface of the wedges.
2020 */
21- private Point3D _WedgeIntersect = new Point3D ();
21+ private Point3D wedgeIntersect = new Point3D ();
2222
2323 /**
2424 * Path length of the track from the DOCA to the beam line
2525 * to the entrance surface of the bar.
2626 */
27- Float _BarPathLength ;
27+ Float barPathLength ;
2828
2929 /**
3030 * Path length of the track from the DOCA to the beam line
3131 * to the entrance surface of the wedges.
3232 */
33- Float _WedgePathLength ;
33+ Float wedgePathLength ;
3434
3535 /**
3636 * Path length inside the bar.
3737 */
38- Float _BarInPathLength ;
38+ Float barInPathLength ;
3939
4040 /**
4141 * Path length inside the wedge.
4242 */
43- Float _WedgeInPathLength ;
43+ Float wedgeInPathLength ;
4444
4545
4646 /**
4747 * Default constructor that initializes the intersection points and path lengths to {@code NaN}.
4848 */
4949 public TrackProjection () {
50- _BarIntersect = new Point3D (Double .NaN , Double .NaN , Double .NaN );
51- _WedgeIntersect = new Point3D (Double .NaN , Double .NaN , Double .NaN );
52- _BarPathLength = Float .NaN ;
53- _WedgePathLength = Float .NaN ;
54- _BarInPathLength = Float .NaN ;
55- _WedgeInPathLength = Float .NaN ;
50+ barIntersect = new Point3D (Double .NaN , Double .NaN , Double .NaN );
51+ wedgeIntersect = new Point3D (Double .NaN , Double .NaN , Double .NaN );
52+ barPathLength = Float .NaN ;
53+ wedgePathLength = Float .NaN ;
54+ barInPathLength = Float .NaN ;
55+ wedgeInPathLength = Float .NaN ;
5656 }
5757
5858 /**
5959 * Gets the intersection point of the track with the middle surface of the bar.
6060 *
6161 * @return {@link Point3D} bar's intersection point.
6262 */
63- public Point3D get_BarIntersect () {
64- return _BarIntersect ;
63+ public Point3D getBarIntersect () {
64+ return barIntersect ;
6565 }
6666
6767 /**
6868 * Gets the intersection point of the track with the middle surface of the wedges.
6969 *
7070 * @return {@link Point3D} wedge's intersection point.
7171 */
72- public Point3D get_WedgeIntersect () {
73- return _WedgeIntersect ;
72+ public Point3D getWedgeIntersect () {
73+ return wedgeIntersect ;
7474 }
7575
7676 /**
7777 * Gets the path length of the track from the DOCA to the beam line to the inner surface of the bar.
7878 *
7979 * @return {@code Float} path length to the bar's middle surface.
8080 */
81- public Float get_BarPathLength () {
82- return _BarPathLength ;
81+ public Float getBarPathLength () {
82+ return barPathLength ;
8383 }
8484
8585 /**
@@ -88,17 +88,17 @@ public Float get_BarPathLength() {
8888 *
8989 * @return {@code Float} path length inside the bar.
9090 */
91- public Float get_BarInPathLength () {
92- return _BarInPathLength ;
91+ public Float getBarInPathLength () {
92+ return barInPathLength ;
9393 }
9494
9595 /**
9696 * Gets the path length of the track from the DOCA to the beam line to the inner surface of the wedges.
9797 *
9898 * @return {@code Float} path length to the wedge's middle surface.
9999 */
100- public Float get_WedgePathLength () {
101- return _WedgePathLength ;
100+ public Float getWedgePathLength () {
101+ return wedgePathLength ;
102102 }
103103
104104 /**
@@ -107,64 +107,63 @@ public Float get_WedgePathLength() {
107107 *
108108 * @return {@code Float} path length inside the wedge.
109109 */
110- public Float get_WedgeInPathLength () {
111- return _WedgeInPathLength ;
110+ public Float getWedgeInPathLength () {
111+ return wedgeInPathLength ;
112112 }
113113
114114 /**
115115 * Sets the intersection point of the track with the middle surface of the bar.
116116 *
117117 * @param BarIntersect {@link Point3D} intersection with the bar.
118118 */
119- public void set_BarIntersect (Point3D BarIntersect ) {
120- this ._BarIntersect = BarIntersect ;
119+ public void setBarIntersect (Point3D BarIntersect ) {
120+ this .barIntersect = BarIntersect ;
121121 }
122122
123123 /**
124124 * Sets the intersection point of the track with the middle surface of the wedges.
125125 *
126126 * @param WedgeIntersect {@link Point3D} intersection with the wedge.
127127 */
128- public void set_WedgeIntersect (Point3D WedgeIntersect ) {
129- this ._WedgeIntersect = WedgeIntersect ;
128+ public void setWedgeIntersect (Point3D WedgeIntersect ) {
129+ this .wedgeIntersect = WedgeIntersect ;
130130 }
131131
132132 /**
133133 * Sets the path length of the track from the DOCA to the beam line to the inner surface of the bar.
134134 *
135135 * @param BarPathLength {@code Float} path length to the bar inner surface.
136136 */
137- public void set_BarPathLength (Float BarPathLength ) {
138- this ._BarPathLength = BarPathLength ;
137+ public void setBarPathLength (Float BarPathLength ) {
138+ this .barPathLength = BarPathLength ;
139139 }
140140
141141 /**
142142 * Sets the path length of the track from the DOCA to the beam line to the inner surface of the wedges.
143143 *
144144 * @param WedgePathLength {@code Float} path length to the wedge inner surface.
145145 */
146- public void set_WedgePathLength (Float WedgePathLength ) {
147- this ._WedgePathLength = WedgePathLength ;
146+ public void setWedgePathLength (Float WedgePathLength ) {
147+ this .wedgePathLength = WedgePathLength ;
148148 }
149149
150150 /**
151151 * Sets the path length of the track inside the bar.
152152 *
153153 * @param BarInPathLength {@code Float} path length inside the bar.
154154 */
155- public void set_BarInPathLength (Float BarInPathLength ) {
156- this ._BarInPathLength = BarInPathLength ;
155+ public void setBarInPathLength (Float BarInPathLength ) {
156+ this .barInPathLength = BarInPathLength ;
157157 }
158158
159159 /**
160160 * Sets the path length of the track inside the wedges.
161161 *
162162 * @param WedgeInPathLength {@code Float} path length inside the wedge.
163163 */
164- public void set_WedgeInPathLength (Float WedgeInPathLength ) {
165- this ._WedgeInPathLength = WedgeInPathLength ;
164+ public void setWedgeInPathLength (Float WedgeInPathLength ) {
165+ this .wedgeInPathLength = WedgeInPathLength ;
166166 }
167-
168167
169168 /**
170169 * testing purposes.
0 commit comments