Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
fix multiple dpe running config issue
Browse files Browse the repository at this point in the history
  • Loading branch information
zieglerv committed Jul 22, 2017
1 parent 90a790b commit b514cb2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,8 +271,8 @@ public void set_TimeToDistance(double cosTrkAngle, double B) {
}
// System.out.println("setting the time : fit doca = "+x+" dtime(b) = "+deltatime_beta+" intime "+this.get_Time()+" time "+(this.get_Time() + deltatime_beta));
this.set_Time(this.get_Time() - deltatime_beta);
if(this.get_Time()<0)
this.set_Time(0);
if(this.get_Time()<=0)
this.set_Time(0.01);
d = tde.interpolateOnGrid(B, Math.toDegrees(ralpha), this.get_Time(), secIdx, slIdx) / this.get_Time();

}
Expand Down

0 comments on commit b514cb2

Please sign in to comment.