trick/trick_models/test/sched/include/sched.h
Alex Lin 14a75508a3 Cleaning up once include variables and copyright cleanup.
Changed all header file once include variables to follow the same naming
convention and not start with any underscores.  Also deleted old
incorrect copyright notices.  Also removed $Id: tags from all files.

Fixes #14.  Fixes #22.
2015-03-23 16:03:14 -05:00

28 lines
985 B
C

/********************************* TRICK HEADER *******************************
PURPOSE: ( Scheduling test )
REFERENCES: ( None )
ASSUMPTIONS AND LIMITATIONS: ( None )
PROGRAMMERS: ( (Keith Vetter) (Titan) (8-20-2002) )
*******************************************************************************/
#ifndef SCHED_H
#define SCHED_H
#include "sim_services/Integrator/include/regula_falsi.h"
#include "sim_services/Integrator/include/integrator_c_intf.h"
typedef struct { /* SCHEDULE ------------------------------------------------*/
double pos ; /* M Position */
double vel ; /* M/s Velocity */
double acc ; /* M/s2 Acceleration */
double mass ; /* kg Mass */
int amf ; /* -- Just a test variable */
int amf_error ; /* -- Order error occured in amf job */
REGULA_FALSI rf ; /* -- Dynamic event */
} SCHEDULE ; /*--------------------------------------------------------------*/
#endif