Isis 3 Programmer Reference
Isis::Module Class Reference

Module manages HiRISE calibration vectors from various sources. More...

#include <Module.h>

Inheritance diagram for Isis::Module:
Inheritance graph
Collaboration diagram for Isis::Module:
Collaboration graph

Public Member Functions

 Module (const QString &name)
 
 Module (const QString &name, const HiHistory &history)
 
 Module (const QString &name, const Module &c)
 
 Module (const Module &c)
 
virtual ~Module ()
 Destructor. More...
 
QString name () const
 Returns name of component. More...
 
QString getcsvFile () const
 Returns expanded name of last CSV file loaded by loadCsv. More...
 
int size () const
 Returns the size (number of elements) of data array. More...
 
virtual void Process (const Module &c)
 Invokes the process method on the Module vector. More...
 
virtual void Process (const HiVector &v)
 Default processing behavior makes a reference copy of data array. More...
 
HiVector loadCsv (const QString &csvBase, const HiCalConf &conf, const DbProfile &prof, const int &elements=0)
 Provide generic loading of CSV file for all modules. More...
 
const HiVectorref () const
 Return data via a const reference. More...
 
double operator() (int index) const
 Return individual element of the data vector. More...
 
const HiHistoryHistory () const
 Return recorded history of events. More...
 
virtual void record (PvlGroup &pvl, const QString keyname="ModuleHistory") const
 Record history in Pvl group object. More...
 
void Dump (const QString &fname) const
 Dumps the component to a specified file. More...
 

Protected Types

enum  { DefaultWidth = 10, DefaultPrecision = 6 }
 

Protected Member Functions

QString formatDbl (const double &value) const
 Properly format values that could be special pixels. More...
 
virtual void printOn (std::ostream &o) const
 Default printing of data in module. More...
 

Protected Attributes

QString _name
 Name of component. More...
 
QString _csvFile
 Fully expanded name of CSV file if present. More...
 
HiVector _data
 Data vector. More...
 
HiHistory _history
 Hierarchial component history. More...
 
int _fmtWidth
 Default field with of double. More...
 
int _fmtPrecision
 Default field with of double. More...
 

Friends

std::ostream & operator<< (std::ostream &o, const Module &c)
 

Detailed Description

Module manages HiRISE calibration vectors from various sources.

Author
2007-10-05 Kris Becker
History:
2010-04-16 Kris Becker Added load method for standardized access to CSV files; renamed to Module from Component

Definition at line 54 of file Module.h.

Constructor & Destructor Documentation

◆ ~Module()

virtual Isis::Module::~Module ( )
inlinevirtual

Destructor.

Definition at line 81 of file Module.h.

Member Function Documentation

◆ Dump()

void Isis::Module::Dump ( const QString &  fname) const
inline

Dumps the component to a specified file.

Parameters
fnameName of file to dump contents to

Definition at line 146 of file Module.h.

References _FILEINFO_, Isis::FileName::expanded(), and Isis::IException::User.

◆ formatDbl()

QString Isis::Module::formatDbl ( const double &  value) const
inlineprotected

Properly format values that could be special pixels.

This method applies ISIS special pixel value conventions to properly print pixel values.

Parameters
[in](double)value Input value to test for specialness and print as requested by caller
[in](int)width Width of field in which to print the value
[in](int)prec Precision used to format the value
Returns
(string) Formatted double value

Definition at line 184 of file Module.h.

References _fmtPrecision, _fmtWidth, Isis::IsSpecial(), and Isis::PixelToString().

Referenced by Isis::ZeroBufferSmooth::printOn(), Isis::ZeroBufferFit::printOn(), Isis::ZeroDark::printOn(), Isis::ZeroReverse::printOn(), and printOn().

◆ getcsvFile()

QString Isis::Module::getcsvFile ( ) const
inline

Returns expanded name of last CSV file loaded by loadCsv.

Definition at line 86 of file Module.h.

References _csvFile.

◆ History()

const HiHistory& Isis::Module::History ( ) const
inline

Return recorded history of events.

Definition at line 131 of file Module.h.

References _history.

Referenced by Isis::ZeroReverse::init(), and Isis::ZeroBufferSmooth::init().

◆ loadCsv()

HiVector Isis::Module::loadCsv ( const QString &  csvBase,
const HiCalConf &  conf,
const DbProfile prof,
const int &  elements = 0 
)
inline

Provide generic loading of CSV file for all modules.

This method provides generalized access to CSV files through the standardized format.

Author
Kris Becker - 4/16/2010
Parameters
cvsBaseName of base keyword for CSV file
confConfiguration parameters
profModule profile parameters
samplesNumber of expect elements to be read from CSV file
Returns
HiVector

Definition at line 116 of file Module.h.

References _csvFile, and _history.

◆ name()

QString Isis::Module::name ( ) const
inline

Returns name of component.

Definition at line 84 of file Module.h.

References _name.

◆ operator()()

double Isis::Module::operator() ( int  index) const
inline

Return individual element of the data vector.

Definition at line 128 of file Module.h.

References _data.

◆ printOn()

virtual void Isis::Module::printOn ( std::ostream &  o) const
inlineprotectedvirtual

Default printing of data in module.

Reimplemented in Isis::ZeroReverse, Isis::ZeroDark, Isis::ZeroBufferFit, and Isis::ZeroBufferSmooth.

Definition at line 198 of file Module.h.

References _data, _history, and formatDbl().

◆ Process() [1/2]

virtual void Isis::Module::Process ( const Module c)
inlinevirtual

Invokes the process method on the Module vector.

Definition at line 91 of file Module.h.

References ref().

◆ Process() [2/2]

virtual void Isis::Module::Process ( const HiVector v)
inlinevirtual

Default processing behavior makes a reference copy of data array.

Reimplemented in Isis::SplineFill, and Isis::LowPassFilter.

Definition at line 96 of file Module.h.

References _data.

◆ record()

virtual void Isis::Module::record ( PvlGroup pvl,
const QString  keyname = "ModuleHistory" 
) const
inlinevirtual

Record history in Pvl group object.

Definition at line 134 of file Module.h.

References _history.

◆ ref()

const HiVector& Isis::Module::ref ( ) const
inline

Return data via a const reference.

Definition at line 126 of file Module.h.

References _data.

Referenced by Isis::ZeroBufferFit::guess(), Isis::ZeroReverse::init(), Isis::ZeroBufferSmooth::init(), and Process().

◆ size()

int Isis::Module::size ( ) const
inline

Returns the size (number of elements) of data array.

Definition at line 88 of file Module.h.

References _data.

Member Data Documentation

◆ _csvFile

QString Isis::Module::_csvFile
protected

Fully expanded name of CSV file if present.

Definition at line 165 of file Module.h.

Referenced by getcsvFile(), and loadCsv().

◆ _data

◆ _fmtPrecision

int Isis::Module::_fmtPrecision
protected

Default field with of double.

Definition at line 169 of file Module.h.

Referenced by formatDbl().

◆ _fmtWidth

int Isis::Module::_fmtWidth
protected

◆ _history

◆ _name

QString Isis::Module::_name
protected

Name of component.

Definition at line 164 of file Module.h.

Referenced by name().


The documentation for this class was generated from the following file: