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

#ifndef CTD_NEILBROWNIF_H_
#define CTD_NEILBROWNIF_H_

#include "data/ElementURI.h"

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

// Include common ConfigURIs -- must be in namespace and follow definition of NAME
#include "component/HasLoadAtStartupIF.h"
#include "component/HasHardwareIF.h"
#include "component/HasLoadControlIF.h"
#include "component/HasPowerIF.h"
#include "component/HasUartIF.h"

static const ConfigURI MAX_PRESS_BOUND( NAME, "maxPressBound", Units::PASCAL );
static const ConfigURI MIN_PRESS_BOUND( NAME, "minPressBound", Units::PASCAL );
static const ConfigURI OFFSET( NAME, "offset", Units::PASCAL );
static const ConfigURI MAX_SALINITY_BOUND( NAME, "maxSalinityBound", Units::PRACTICAL_SALINITY_UNIT );
static const ConfigURI MIN_SALINITY_BOUND( NAME, "minSalinityBound", Units::PRACTICAL_SALINITY_UNIT );

static const DataURI BIN_MEDIAN_SEA_WATER_ELECTRICAL_CONDUCTIVITY( NAME, "bin_median_sea_water_electrical_conductivity", Units::MILLIMHO_PER_CENTIMETER );
static const DataURI BIN_MEAN_SEA_WATER_ELECTRICAL_CONDUCTIVITY( NAME, "bin_mean_sea_water_electrical_conductivity", Units::MILLIMHO_PER_CENTIMETER );
static const DataURI BIN_STANDARD_DEVIATION_SEA_WATER_ELECTRICAL_CONDUCTIVITY( NAME, "bin_standard_deviation_sea_water_electrical_conductivity", Units::MILLIMHO_PER_CENTIMETER );
static const DataURI BIN_MEDIAN_SEA_WATER_TEMPERATURE( NAME, "bin_median_sea_water_temperature", Units::CELSIUS );
static const DataURI BIN_MEAN_SEA_WATER_TEMPERATURE( NAME, "bin_mean_sea_water_temperature", Units::CELSIUS );
static const DataURI BIN_STANDARD_DEVIATION_SEA_WATER_TEMPERATURE( NAME, "bin_standard_deviation_sea_water_temperature", Units::CELSIUS );
static const DataURI BIN_MEDIAN_SEA_WATER_SALINITY( NAME, "bin_median_sea_water_salinity", Units::PRACTICAL_SALINITY_UNIT );
static const DataURI BIN_MEAN_SEA_WATER_SALINITY( NAME, "bin_mean_sea_water_salinity", Units::PRACTICAL_SALINITY_UNIT );
static const DataURI BIN_STANDARD_DEVIATION_SEA_WATER_SALINITY( NAME, "bin_standard_deviation_sea_water_salinity", Units::PRACTICAL_SALINITY_UNIT );

}

#endif /*CTD_NEILBROWNIF_H_*/
