/** \file
 *
 *  Specifies the interface details for the HFRadarModel component in the
 *  DerivationModule.
 *
 *  HFRadarModel.h should only be included by HFRadarModel.cpp
 *  Other classes should include HFRadarModelIF.h
 *
 *  Copyright (c) 2007,2008,2009 MBARI
 *  MBARI Proprietary Information.  All Rights Reserved
 */

#ifndef HFRADARMODELIF_H_
#define HFRADARMODELIF_H_

#include "data/ElementURI.h"

/**
 *  Specifies the interface details for the HFRadarModel component in the
 *  DerivationModule.
 *
 *  HFRadarModel.h should only be included by HFRadarModel.cpp
 *  Other classes should include HFRadarModelIF.h
 *
 *  \ingroup modules_derivation
 */
namespace HFRadarModelIF
{
/// Static const for component name
/// (Can be used by other components)
static const Str NAME( "HFRadarModel" );

static const OutputURI EASTWARD_SURFACE_CURRENT_OUTPUT( "eastwardSurfaceCurrent", Units::METER_PER_SECOND );
static const OutputURI NORTHWARD_SURFACE_CURRENT_OUTPUT( "northwardSurfaceCurrent", Units::METER_PER_SECOND );


}

#endif /*HFRADARMODELIF_H_*/
