/* JRG, the Resource Geology Seismic Processing System for Java, and Viewmat for Java are Copyright 1998, 1999 by John N. Louie The software and methods here are the subject of academic research, not commercial products. I would like to know what use you make of my methods, and have your feedback on their success or failure. Also, by letting me know who you are, I can inform you if bugs or errors are discovered. Please send me an email message with: your name and email address; whether you are a student or faculty member, consultant or employee; the name of your university or company, and department; and a sentence or two describing what use you intend to make of these methods. Send your message to louie@seismo.unr.edu */ public interface RGData { int getNDims(); int getNMembofDim(int Dim); String getAmpUnits(); void setAmpUnits(String AmpUnits); String getUnitsofDim(int Dim); void setUnitsofDim(int Dim, String DimUnits); public static final int EOF = -1; public static final int SEGYFLOATBYTES = 4; public static final int SEGYTRACEHEADBYTES = 240; public static final int SEGYTAPEHEADBYTES = 3600; public static final int RGTRACEHEADBYTES = 20; public static final int RGFILEHEADBYTES = 12; }