Isis 3 Programmer Reference
SpectralDefinition.cpp
1
6/* SPDX-License-Identifier: CC0-1.0 */
7
8#include "SpectralDefinition.h"
9
10#include <vector>
11#include <QString>
12
13//Other Isis
14#include "ProcessByLine.h"
15#include "CSVReader.h"
16
17//using namespace std;
18namespace Isis {
19
24
25
29
30
35 return m_ns;
36 }
37
38
43 return m_nl;
44 }
45
46
51 return m_nb;
52 }
53
54
60 return m_numSections;
61 }
62
63
66
67 m_ns = 0;
68 m_nl = 0;
69 m_nb = 0;
70 m_numSections = 0;
71 }
72
73}
74
75
76
77
int m_numSections
Number of sections of the chip/wavelength data.
int m_nl
Number of lines in input Cube.
SpectralDefinition()
Constructs an empty SpectralDefinition object.
virtual ~SpectralDefinition()
default destructor
virtual int lineCount() const
Returns the number of line in the calibration image.
void init()
Constructor initializer.
virtual int sectionCount() const
Returns the number of sections in the calibration image.
virtual int sampleCount() const
Returns the number of samples in the calibration image.
virtual int bandCount() const
Returns the number of bands in the calibration image.
int m_ns
Number of samples in input Cube.
int m_nb
Number of bands in input Cube.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16