
	/* figure out how much time it will take to slew the scope from
	   the last observation to the next one, plus any time for dome
	   to rotate, or filter wheel to move into place, etc.  */

#include <stdio.h>
#include <math.h>
#include "listgen.h"

#define SETUP_TIME   60.0	/* a rough guess, for development */

setup_time(last_tar, next_tar)
struct target *last_tar, *next_tar;
{
	/* of course, the real routine should take into account the actual
	   slew time, dome rotation, etc., and then set the "setup_time" 
	   field accordingly */

	*next_tar->setup_time = SETUP_TIME;
}
