SETI@home analysis algorithm

do forever
    get a chunk of data from server
    for each FFT length
	for each chirp rate
	    chirp data
	    compute FFTs over all data
	    find spikes above threshold
	    find Gaussians above threshold
	end
    end
    return results to server
end

next