94 void init(
const HiCalConf &conf) {
100 int samples =
ToInteger(prof(
"Samples"));
103 _BM =
loadCsv(
"DarkCurrent", conf, prof, samples);
104 _slope =
loadCsv(
"DarkSlope", conf, prof, 256);
105 _intercept =
loadCsv(
"DarkIntercept", conf, prof, 256);
117 double fpa_py_temp =
ToDouble(prof(
"FpaPositiveYTemperature"));
118 double fpa_my_temp =
ToDouble(prof(
"FpaNegativeYTemperature"));
119 double temp = (fpa_py_temp+fpa_my_temp) / 2.0;
123 smooth.Process(_slope);
124 _slope = smooth.ref();
126 smooth.Process(_intercept);
127 _intercept = smooth.ref();
130 for (
int i = 0 ; i < _slope.dim() ; i++) {
131 t_prof[i] = _intercept[i] + _slope[i] * temp;
134 _tempProf =
rebin(t_prof, samples);
139 double linetime =
ToDouble(prof(
"ScanExposureDuration"));
140 double scale = linetime * 1.0E-6 * (_bin*_bin) *
141 (20.0*103.0/89.0 + _tdi);
143 for (
int j = 0 ; j < samples ; j++) {
144 dc[j] = _BM[j] * scale *
HiTempEqn(_tempProf[j]) / baseT;
149 _data = smooth.ref();
153 for (
int i = 0 ; i <
_data.dim() ; i++ ) {
164 o <<
"# History = " <<
_history << std::endl;
166 o << std::setw(
_fmtWidth) <<
"DarkMatrix" 168 << std::setw(
_fmtWidth+1) <<
"ZeroDark\n";
170 for (
int i = 0 ; i <
_data.dim() ; i++) {
double StandardDeviation() const
Computes and returns the standard deviation.
int _fmtWidth
Default field with of double.
HiVector _data
Data vector.
double HiTempEqn(const double temperature, const double napcm2=2.0, const double px=12.0)
Implements (classic) HiRISE temperature equation.
int toInt(const QString &string)
Global function to convert from a string to an integer.
HiHistory _history
Hierarchial component history.
HiVector loadCsv(const QString &csvBase, const HiCalConf &conf, const DbProfile &prof, const int &elements=0)
Provide generic loading of CSV file for all modules.
QString toString(bool boolToConvert)
Global function to convert a boolean to a string.
double toDouble(const QString &string)
Global function to convert from a string to a double.
A DbProfile is a container for access parameters to a database.
QString formatDbl(const double &value) const
Properly format values that could be special pixels.
This class is used to accumulate statistics on double arrays.
Computes a complex dark subtraction component (ZeroDark module)
int ToInteger(const T &value)
Helper function to convert values to Integers.
void Reset()
Reset all accumulators and counters to zero.
Compute a low pass filter from a Module class content.
Module manages HiRISE calibration vectors from various sources.
virtual void printOn(std::ostream &o) const
Virtualized data dump method.
HiVector rebin(const HiVector &v, int n)
Rebins a vector to a different size.
double ToDouble(const T &value)
Helper function to convert values to doubles.
virtual ~ZeroDark()
Destructor.
Namespace for ISIS/Bullet specific routines.
T ConfKey(const DbProfile &conf, const QString &keyname, const T &defval, int index=0)
Find a keyword in a profile using default for non-existant keywords.
QString Name() const
Returns the name of this property.
const Statistics & Stats() const
Return statistics for filtered - raw Buffer.
void AddData(const double *data, const unsigned int count)
Add an array of doubles to the accumulators and counters.
QString ToString(const T &value)
Helper function to convert values to strings.
double Average() const
Computes and returns the average.
TNT::Array1D< double > HiVector
1-D Buffer