Skip to content

Commit b241279

Browse files
committed
cleanup
1 parent 9b25e45 commit b241279

File tree

1 file changed

+2
-2
lines changed
  • common-tools/swim-tools/src/main/java/org/jlab/clas/swimtools

1 file changed

+2
-2
lines changed

common-tools/swim-tools/src/main/java/org/jlab/clas/swimtools/Swim.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,6 @@ public double[] SwimToPlaneLab(double z_cm) {
249249
* @param Rad
250250
* @return state x,y,z,px,py,pz, pathlength, iBdl at the surface
251251
*/
252-
@Override
253252
public double[] SwimToCylinder(double Rad) {
254253

255254
if (this.SwimUnPhys) return null;
@@ -289,7 +288,8 @@ public double[] SwimRho(double radius, double accuracy) {
289288
try {
290289
AdaptiveSwimResult result = new AdaptiveSwimResult(false);
291290

292-
PC.CF.swimRho(_charge, _x0, _y0, _z0, _pTot, _theta, _phi, radius/100, accuracy/100, _rMax, stepSize, cnuphys.swim.Swimmer.CLAS_Tolerance, result);
291+
PC.CF.swimRho(_charge, _x0, _y0, _z0, _pTot, _theta, _phi,
292+
radius/100, accuracy/100, _rMax, stepSize, cnuphys.swim.Swimmer.CLAS_Tolerance, result);
293293

294294
if(result.getStatus()==0) {
295295
value = new double[8];

0 commit comments

Comments
 (0)