view YLCStuff.h @ 67:0159abc1a9d8

Fix slope measurement For the update algorithm to work correclty the slope measurement must be updated before the mean measurement. Other code is affected by the same issue.
author Daniele Nicolodi <daniele.nicolodi@obspm.fr>
date Mon, 29 Oct 2012 14:48:08 +0100
parents d9aae7d7f2c6
children
line wrap: on
line source

//==============================================================================
//
// Title:       YLCStuff.h
// Purpose:     A short description of the interface.
//
// Created on:  19/08/2008 at 10:06:43 by pascal blonde.
// Copyright:   syrte. All Rights Reserved.
//
//==============================================================================

#ifndef __YLCStuff_H__
#define __YLCStuff_H__

#ifdef __cplusplus
    extern "C" {
#endif

//==============================================================================
// Include files

#include "cvidef.h"

//==============================================================================
// Constants

//==============================================================================
// Types

typedef int bool;

#define FALSE 0
#define TRUE 1

typedef int PanelHandle ;		
		
		
//==============================================================================
// External variables

//==============================================================================
// Global functions

double Peta (double x);
double Tera (double x);
double Giga (double x);
double Mega (double x);
double kilo (double x);
double milli(double x);
double micro(double x);
double nano (double x);
double pico (double x);
double femto(double x);
double atto (double x);

#ifdef __cplusplus
    }
#endif

#endif  /* ndef __YLCStuff_H__ */