All examples for READBF
#	Reads standard SEGY files generated by PROMAX
#	----------------------------------------------
#	Since PROMAX outputs produces only one seismogram (reel) header
#	per file, but puts the the number of traces per shot (?)
#	in the number-of-traces field, we use a large number
#	of traces (9999999) in order to override this setting
#	and to retrieve all traces.  If we default this field,
#	READBF will read only the first gather from the file,
#	and will report "bad seismogram header" on the following
#	records.
############################################################

*call	readbf  10      15000   trnum
log
segy
error
files	/transient6/jingru/SEGY/poststkmig-*.segy # SEGY file or wildcard
1		9999999

############################################################