1options(digits=4) 2file2 <- "etf_summary" 3etf <- scan(file1, list(day=0, sec=0, offset=0, stab=0)) 4r <- lsfit(etf$sec, etf$offset) 5count<-length(etf$sec) 6mean<-r$coef[[1]] 7std<-sqrt(var(r$residuals)) 8slope<-r$coef[[2]] * 1000 9cat("\n", file=file2 , append=TRUE, fill=FALSE, sep="") 10cat(file1, "\n", file=file2, append=TRUE, fill=FALSE, sep="") 11cat("etf1 ", count, ", T ", mean, " ns, R ", slope, " ps/s, std ", std, " us\n", file=file2, append=TRUE, fill=FALSE, sep="") 12str <- paste("eps/", file1, ".eps", sep="") 13postscript(str, , , , 5, pointsize=18) 14par(mgp=c(1, 0, 0), tck=0.03, mar=c(2, 2, 1, 1)) 15plot(etf$sec, etf$offset, type="l", xlab=paste("MJD", etf$day, "Time (s)"), ylab="External Offset (ns)", ylim=c(-400, 400)) 16