1#ifndef GainTemperature_h
2#define GainTemperature_h
17#include "HiCalTypes.h"
22#include "Statistics.h"
23#include "IException.h"
65 void init(
const HiCalConf &conf) {
68 _history.add(
"Profile["+ prof.Name()+
"]");
72 _fpaFactor = factor[0];
77 double fpa_py_temp =
ToDouble(prof(
"FpaPositiveYTemperature"));
78 double fpa_my_temp =
ToDouble(prof(
"FpaNegativeYTemperature"));
81 double FPA_temp = (fpa_py_temp+fpa_my_temp) / 2.0;
82 double _baseT = 1.0 - (_fpaFactor * (FPA_temp - _refTemp));
A DbProfile is a container for access parameters to a database.
GaingTemperature Module - Applies temperature-dependant gain correction (column)
virtual ~GainTemperature()
Destructor.
Module manages HiRISE calibration vectors from various sources.
HiVector _data
Data vector.
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.
This is free and unencumbered software released into the public domain.
QString toString(bool boolToConvert)
Global function to convert a boolean to a string.
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.
TNT::Array1D< double > HiVector
1-D Buffer
QString ToString(const T &value)
Helper function to convert values to strings.
double ToDouble(const T &value)
Helper function to convert values to doubles.
double toDouble(const QString &string)
Global function to convert from a string to a double.
int ToInteger(const T &value)
Helper function to convert values to Integers.