Classes | |
struct | Payload |
driver specific part below More... | |
Public Member Functions | |
XNMRSpectrumBase (const char *name, bool runtime, Transaction &tr_meas, const shared_ptr< XMeasure > &meas) | |
virtual | ~XNMRSpectrumBase () |
ususally nothing to do | |
virtual void | showForms () override |
Shows all forms belonging to driver. | |
const shared_ptr< XItemNode < XDriverList, XNMRPulseAnalyzer > > & | pulse () const |
const shared_ptr< XDoubleNode > & | bandWidth () const |
const shared_ptr< XComboNode > & | bwList () const |
Tune bandwidth to 50%/100%/200%. | |
const shared_ptr< XBoolNode > & | autoPhase () const |
Deduce phase from data. | |
const shared_ptr< XDoubleNode > & | phase () const |
(Deduced) phase of echoes [deg.] | |
const shared_ptr< XComboNode > & | solverList () const |
Spectrum solvers. | |
const shared_ptr< XComboNode > & | windowFunc () const |
! FFT Window Function | |
const shared_ptr< XDoubleNode > & | windowWidth () const |
Changing width of time-domain image [%]. | |
const shared_ptr < XTouchableNode > & | clear () const |
Clears stored points. | |
![]() | |
XSecondaryDriverInterface (const char *name, bool runtime, Transaction &tr_meas, const shared_ptr< XMeasure > &meas) | |
Protected Member Functions | |
virtual void | analyze (Transaction &tr, const Snapshot &shot_emitter, const Snapshot &shot_others, XDriver *emitter) override throw (XRecordError&) |
This function is called when a connected driver emit a signal. | |
virtual void | visualize (const Snapshot &shot) override |
virtual bool | checkDependency (const Snapshot &shot_this, const Snapshot &shot_emitter, const Snapshot &shot_others, XDriver *emitter) const override |
virtual bool | onCondChangedImpl (const Snapshot &shot, XValueNodeBase *) const =0 |
virtual double | getFreqResHint (const Snapshot &shot_this) const =0 |
[Hz] | |
virtual double | getMinFreq (const Snapshot &shot_this) const =0 |
[Hz] | |
virtual double | getMaxFreq (const Snapshot &shot_this) const =0 |
[Hz] | |
virtual double | getCurrentCenterFreq (const Snapshot &shot_this, const Snapshot &shot_others) const =0 |
[Hz] | |
virtual void | rearrangeInstrum (const Snapshot &) |
virtual void | getValues (const Snapshot &shot_this, std::vector< double > &values) const =0 |
virtual bool | checkDependencyImpl (const Snapshot &shot_this, const Snapshot &shot_emitter, const Snapshot &shot_others, XDriver *emitter) const =0 |
void | onClear (const Snapshot &shot, XTouchableNode *) |
![]() | |
void | connect (const shared_ptr< XPointerItemNode< XDriverList > > &selecter) |
Call this to receive signal/data. | |
void | requestAnalysis () |
virtual void | start () |
usually nothing to do | |
virtual void | stop () |
usually nothing to do | |
Protected Attributes | |
shared_ptr< XListener > | m_lsnOnClear |
shared_ptr< XListener > | m_lsnOnCondChanged |
const qshared_ptr< FRM > | m_form |
const shared_ptr< XStatusPrinter > | m_statusPrinter |
const shared_ptr< XWaveNGraph > | m_spectrum |
Private Member Functions | |
void | fssum (Transaction &tr, const Snapshot &shot_pulse, const Snapshot &shot_others) |
Fourier Step Summation. | |
void | analyzeIFT (Transaction &tr, const Snapshot &shot_pulse) |
void | onCondChanged (const Snapshot &shot, XValueNodeBase *) |
Private Attributes | |
const shared_ptr< XItemNode < XDriverList, XNMRPulseAnalyzer > > | m_pulse |
const shared_ptr< XDoubleNode > | m_bandWidth |
const shared_ptr< XComboNode > | m_bwList |
const shared_ptr< XBoolNode > | m_autoPhase |
const shared_ptr< XDoubleNode > | m_phase |
const shared_ptr< XTouchableNode > | m_clear |
const shared_ptr< XComboNode > | m_solverList |
const shared_ptr< XComboNode > | m_windowFunc |
const shared_ptr< XDoubleNode > | m_windowWidth |
std::deque< xqcon_ptr > | m_conBaseUIs |
shared_ptr< SpectrumSolverWrapper > | m_solver |
shared_ptr< XXYPlot > | m_peakPlot |
atomic< int > | m_isInstrumControlRequested |
Definition at line 27 of file nmrspectrumbase.h.
|
overrideprotectedvirtual |
Checks if the connected drivers have valid time stamps.
Implements XSecondaryDriverInterface< T >.
Definition at line 160 of file nmrspectrumbase_impl.h.
|
protectedpure virtual |
Implemented in XNMRFSpectrum, and XNMRSpectrum.
|
overrideprotectedvirtual |
This function is called after committing XPrimaryDriver::analyzeRaw() or XSecondaryDriver::analyze(). This might be called even if the record is invalid (time() == false).
Implements XSecondaryDriverInterface< T >.
Definition at line 280 of file nmrspectrumbase_impl.h.