FACT++  1.0
double PointingModel::Sign ( double  val,
double  alt 
) const
inline

Definition at line 263 of file drivectrl.cc.

264  {
265  // Some pointing corrections are defined as Delta ZA, which
266  // is (P. Wallace) defined [0,90]deg while Alt is defined
267  // [0,180]deg
268  return (M_PI/2-alt < 0 ? -val : val);
269  }