DynExp
Highly flexible laboratory automation for dynamically changing experiments.
DynExpInstr::AnalogOutData Class Reference

Data class for AnalogOut. More...

+ Inheritance diagram for DynExpInstr::AnalogOutData:

Public Types

using SampleStreamType = AnalogSampleStream
 Data stream type this data stream instrument should operate on. More...
 
- Public Types inherited from DynExpInstr::DataStreamInstrumentData
enum class  UnitType {
  Arbitrary , LogicLevel , Counts , Volt ,
  Ampere , Power_W , Power_dBm
}
 Units which can be used for data stream instruments. More...
 
using ValueType = double
 Data type to represent hardware limits on the sample values to write to the hardware adapter assigned to the related DataStreamInstrument instance. More...
 
- Public Types inherited from DynExp::InstrumentDataBase
using TaskQueueType = std::list< std::unique_ptr< TaskBase > >
 Type of an instrument task queue owning the tasks within. More...
 
using TaskQueueIteratorType = TaskQueueType::const_iterator
 Const iterator type to elements of TaskQueueType. More...
 

Public Member Functions

 AnalogOutData (size_t BufferSizeInSamples=1)
 Constructs a DataStreamInstrumentData instance. More...
 
 AnalogOutData (DataStreamBasePtrType &&SampleStream)
 Constructs a DataStreamInstrumentData instance. More...
 
virtual ~AnalogOutData ()=default
 
- Public Member Functions inherited from DynExpInstr::OutputPortData
 OutputPortData (DataStreamBasePtrType &&SampleStream)
 Constructs a DataStreamInstrumentData instance. More...
 
virtual ~OutputPortData ()=default
 
- Public Member Functions inherited from DynExpInstr::FunctionGeneratorData
 FunctionGeneratorData (DataStreamBasePtrType &&SampleStream)
 Constructs a DataStreamInstrumentData instance. More...
 
virtual ~FunctionGeneratorData ()=default
 
auto GetCurrentWaveformType () const noexcept
 Returns CurrentWaveformType. More...
 
auto GetCurrentFrequencyInHz () const noexcept
 Returns CurrentFrequencyInHz. More...
 
auto GetCurrentAmplitude () const noexcept
 Returns CurrentAmplitude. More...
 
auto GetCurrentOffset () const noexcept
 Returns CurrentOffset. More...
 
auto GetCurrentPhaseInRad () const noexcept
 Returns CurrentPhaseInRad. More...
 
auto GetCurrentDutyCycle () const noexcept
 Returns CurrentDutyCycle. More...
 
auto GetCurrentTriggerMode () const noexcept
 Returns CurrentTriggerMode. More...
 
auto GetCurrentTriggerEdge () const noexcept
 Returns CurrentTriggerEdge. More...
 
auto GetShouldAutostart () const noexcept
 Returns ShouldAutostart. More...
 
auto GetCurrentPulses () const noexcept
 Returns CurrentPulses. More...
 
- Public Member Functions inherited from DynExpInstr::DataStreamInstrumentData
 DataStreamInstrumentData (DataStreamBasePtrType &&SampleStream)
 Constructs a DataStreamInstrumentData instance. More...
 
virtual ~DataStreamInstrumentData ()=default
 
DataStreamBasePtrType::element_type * GetSampleStream () const noexcept
 Getter for the data stream instrument's sample stream. Logical const-ness: always returns a non-const type to allow modules to directly manipulate the sample stream. More...
 
template<typename T >
auto GetCastSampleStream () const
 Casts the data stream instrument's sample stream to a derived data stream type. More...
 
ValueType GetHardwareMinValue () const noexcept
 Returns HardwareMinValue. More...
 
ValueType GetHardwareMaxValue () const noexcept
 Returns HardwareMaxValue. More...
 
UnitType GetValueUnit () const noexcept
 Returns ValueUnit. More...
 
void SetHardwareMinValue (ValueType Value) noexcept
 Sets HardwareMinValue. More...
 
void SetHardwareMaxValue (ValueType Value) noexcept
 Sets HardwareMaxValue. More...
 
void SetValueUnit (UnitType Unit) noexcept
 Sets ValueUnit. More...
 
- Public Member Functions inherited from DynExp::InstrumentDataBase
 InstrumentDataBase ()
 
virtual ~InstrumentDataBase ()
 
auto GetLastUpdateTime () const
 Getter for LastUpdate. More...
 
auto GetException () const noexcept
 Getter for InstrumentDataBase::InstrumentException. More...
 
void EnqueueTask (std::unique_ptr< TaskBase > &&Task)
 Enqueues a task at the back of an instrument's task queue and notifies the instrument about the new task. More...
 
void EnqueuePriorityTask (std::unique_ptr< TaskBase > &&Task)
 Enqueues a task at the front of an instrument's task queue and notifies the instrument about the new task. More...
 
std::unique_ptr< TaskBasePopTaskFront ()
 Removes a task from the front of an instrument's task queue. More...
 
std::unique_ptr< TaskBasePopTaskBack ()
 Removes a task from the back of an instrument's task queue. More...
 
auto GetTaskFront () noexcept
 Getter for first enqueued task. More...
 
auto GetTaskBack () noexcept
 Getter for last enqueued task. More...
 
size_t GetNumEnqueuedTasks () const noexcept
 Getter for the instrument task queue's length. More...
 
std::unique_ptr< TaskBasePopFinishedTask ()
 Removes a task from the front of an instrument's list of finished tasks. More...
 
size_t GetNumFinishedTasks () const noexcept
 Getter for the length of the instrument's list of finished tasks. More...
 
bool IsQueueClosed () const noexcept
 Determines whether the instrument task queue is closed. More...
 
- Public Member Functions inherited from Util::INonCopyable
 INonCopyable (const INonCopyable &)=delete
 
INonCopyableoperator= (const INonCopyable &)=delete
 

Private Member Functions

void ResetImpl (dispatch_tag< OutputPortData >) override final
 
virtual void ResetImpl (dispatch_tag< AnalogOutData >)
 

Additional Inherited Members

- Static Public Member Functions inherited from DynExpInstr::DataStreamInstrumentData
static const char * UnitTypeToStr (const UnitType &Unit)
 Returns a descriptive string of a respective unit to be e.g. used in plots. More...
 
- Public Attributes inherited from DynExp::InstrumentDataBase
InstrumentBaseOnlyType InstrumentBaseOnly
 Allow exclusive access to some of InstrumentDataBase's private methods to InstrumentBase. More...
 
InstrumenThreadOnlyType InstrumentThreadOnly
 Allow exclusive access to some of InstrumentDataBase's private methods to the instrument thread InstrumentThreadMain(). More...
 
- Protected Member Functions inherited from Util::ISynchronizedPointerLockable
 ISynchronizedPointerLockable ()
 
 ~ISynchronizedPointerLockable ()
 Object should never be destroyed before completely unlocked. More...
 
- Protected Member Functions inherited from Util::INonCopyable
constexpr INonCopyable ()=default
 
 ~INonCopyable ()=default
 

Detailed Description

Data class for AnalogOut.

Definition at line 78 of file AnalogOut.h.

Member Typedef Documentation

◆ SampleStreamType

Data stream type this data stream instrument should operate on.

Definition at line 81 of file AnalogOut.h.

Constructor & Destructor Documentation

◆ AnalogOutData() [1/2]

DynExpInstr::AnalogOutData::AnalogOutData ( size_t  BufferSizeInSamples = 1)
inline

Constructs a DataStreamInstrumentData instance.

Parameters
BufferSizeInSamplesInitial buffer size of a data stream of type SampleStreamType to create for the related DataStreamInstrument instance to operate on

Definition at line 89 of file AnalogOut.h.

◆ AnalogOutData() [2/2]

DynExpInstr::AnalogOutData::AnalogOutData ( DataStreamBasePtrType &&  SampleStream)
inline

Constructs a DataStreamInstrumentData instance.

Parameters
SampleStreamData stream the related DataStreamInstrument instance operates on. The DataStreamInstrumentData instance takes ownership of the stream.
Exceptions
Util::InvalidArgExceptionis thrown if SampleStream is nullptr.

Definition at line 94 of file AnalogOut.h.

◆ ~AnalogOutData()

virtual DynExpInstr::AnalogOutData::~AnalogOutData ( )
virtualdefault

Member Function Documentation

◆ ResetImpl() [1/2]

virtual void DynExpInstr::AnalogOutData::ResetImpl ( dispatch_tag< AnalogOutData )
inlineprivatevirtual

Reimplemented in DynExpInstr::NIDAQAnalogOutData.

Definition at line 100 of file AnalogOut.h.

◆ ResetImpl() [2/2]

void DynExpInstr::AnalogOutData::ResetImpl ( dispatch_tag< OutputPortData )
finaloverrideprivatevirtual

Reimplemented from DynExpInstr::OutputPortData.

Definition at line 26 of file AnalogOut.cpp.


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