Mercurial > hg > fxanalyse
view Plot.h @ 254:67c8ace9d5f6
Save time strings in UTC time and rotate datafiles at midnight UTC
Time strings '05/06/2015 00:00:00.014' in datafiles were reported in
Paris local time and the data files were rotated at midnight Paris
time. Switch to use UTC time for both.
author | Daniele Nicolodi <daniele@grinta.net> |
---|---|
date | Fri, 05 Jun 2015 18:06:12 +0200 |
parents | 7b9cf3d4346e |
children |
line wrap: on
line source
#ifndef __FXANALISE_PLOT_H__ #define __FXANALISE_PLOT_H__ #define MAXPOINTSNUMBER 10000 typedef struct { int PlotPanel; /* display panel handle */ int IndexPoint; /* data points number */ double *Frequencies; /* data points */ double Mean; /* data computed at each value insertion */ double Slope; double ADev; int active; /* active */ int parent; /* panel containig the activation control */ int control; /* activation control handle */ } Plot_Data; void Plot_InitPanel(Plot_Data * Instance, const char *title, double ymin, double ymax, int parent, int control); void Plot_ClosePanel(Plot_Data * Instance); void Plot_AddFrequency(Plot_Data * Instance, double Freq); #endif