-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcSegYTempla.h
More file actions
25 lines (21 loc) · 731 Bytes
/
cSegYTempla.h
File metadata and controls
25 lines (21 loc) · 731 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#pragma once
#include <QString>
#include <QVector>
//namespace GnV //GnGViewer
//{
class cSegYTempla
{
public:
bool m_IsTrcHdr;
bool m_IsDblHdr; //Is Double Header
QString m_HdrName;
QString m_HdrDesc;
bool m_HdrLoad;
bool m_isLngtTwoByt = false; //Only dealing with 2 or 4 byte lengths
quint32 m_HdrIndex; //Header's row number in the SegY template file and TableWidget.
QString m_HdrType; // Is 2 byte or 4 Byte
quint32 m_StrtByte; //Header's byte location within the 240bytes trace headers
quint32 m_minValue;
quint32 m_maxValue;
};
//}