/*****************************************************************************/
/* Copyright 2004 MBARI                                                      */
/*****************************************************************************/
/* Summary  : AUV Speed of Sound Calculation                                 */
/* Filename : SoundVelocity.h                                                */
/* Author   : Karen A. Salamy                                                */
/* Project  : Sea Floor Mapping                                 	     */
/* Version  : Version 1.0                                                    */
/* Created  : 01/28/2004                                                     */
/* Modified :                                                       	     */
/* Archived :                                                                */
/*****************************************************************************/
/* Modification History:                                                     */
/* $Header:
 * $Log:
 */
/*****************************************************************************/

class SoundVelocity {

public:

// Temp should be in degC
// Press should be in decibars (db)
// Lat should be in decimal degrees
// Sal should be in ....
// Depth (not listed) should always be in meters
  static float calcSndVel (float Temp, float Press, float Lat, float Sal);

};
