/****************************************************************************/
/* Copyright (c) 2000 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : ParosciLog.h                                                  */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 02/07/2000                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
/*-----------------------------------------------------------------------*
  CLASS: ParosciLog.h

  DESCRIPTION: Logging object for the Paroscientific

  $Id: ParosciLog.h,v 1.2 2000/02/08 00:03:04 pean Exp $
  *-----------------------------------------------------------------------*/

#ifndef _PAROSCI_LOG_H
#define _PAROSCI_LOG_H

#include "DataLogWriter.h"
#include "DataLog.h"
#include "Parosci.h"

class Parosci;

#define ParosciLogName "parosci"

class ParosciLog : public DataLogWriter
{

public:
  ParosciLog( Parosci *, DataLog::FileFormat );

  ~ParosciLog();

protected:
  virtual void setFields();

  Parosci *_parosci;

private:

  DoubleData *_depth,
    *_temp,
    *_pressure,
    *_tempPeriod,
    *_presPeriod;

};

#endif
