/****************************************************************************/
/* Copyright (c) 2000 MBARI                                                 */
/* MBARI Proprietary Information. All rights reserved.                      */
/****************************************************************************/
/* Summary  :                                                               */
/* Filename : IpsStopProfile.h                                              */
/* Author   :                                                               */
/* Project  :                                                               */
/* Version  : 1.0                                                           */
/* Created  : 10/13/2001                                                    */
/* Modified :                                                               */
/* Archived :                                                               */
/****************************************************************************/
/* Modification History:                                                    */
/****************************************************************************/
#ifndef _IPSSTOPPROFILE_H
#define _IPSSTOPPROFILE_H

#include <Ips4IF.h>
#include "Behavior.h"

#define IpsStopProfileBehaviorName "ipsStopProfile"

/*
CLASS 
IpsStopProfile

DESCRIPTION
This behavior simply requests that the Ips stop the CTD profile
for use in calculating ice draft.

Attribute       Type               Meaning
---------       ----               -------

AUTHOR
Henthorn
*/
class IpsStopProfile : public Behavior {

public:

  ///////////////////////////////////////////////////////////////////
  // Constructor
  IpsStopProfile();

  virtual ~IpsStopProfile();

  virtual void execute();

  virtual Boolean validInput();

  virtual Boolean shouldBehaviorStart();

protected:
  Ips4IF *_ips;

  Boolean _behaviorStarted;
};

#endif
