DATRW++ library: seismic data I/O with multiple formats

◆ Eflags

indicate file or trace properties

Enumerator
Fsrce 

trace has SRCE header

Ffree 

trace has FREE header

Finfo 

trace has INFO header

Fdouble 

trace has double data

Ffloat 

trace has float data

Fint 

trace has int data

Definition at line 78 of file binary.h.

78  {
79  Fsrce= (1<<0), //!< trace has SRCE header
80  Ffree= (1<<1), //!< trace has FREE header
81  Finfo= (1<<2), //!< trace has INFO header
82  Fdouble= (1<<3), //!< trace has double data
83  Ffloat= (1<<4), //!< trace has float data
84  Fint= (1<<5) //!< trace has int data
85  }; // enum Eflags
trace has INFO header
Definition: binary.h:81
trace has int data
Definition: binary.h:84
trace has SRCE header
Definition: binary.h:79
trace has float data
Definition: binary.h:83
trace has double data
Definition: binary.h:82
trace has FREE header
Definition: binary.h:80