|
DynExp
Highly flexible laboratory automation for dynamically changing experiments.
|
#include <SignalPlotter.h>
Inheritance diagram for DynExpModule::SignalPlotter::SignalPlotterData:Classes | |
| struct | SampleDataType |
Public Member Functions | |
| SignalPlotterData () | |
| virtual | ~SignalPlotterData ()=default |
| void | LockInstruments (DynExp::ModuleInstance *Instance, const DynExp::ParamsBase::ListParam< DynExp::ObjectLink< DynExpInstr::DataStreamInstrument > > &InstrParam) |
| void | UnlockInstruments (DynExp::ModuleInstance *Instance) |
| auto & | GetDataStreamInstr (size_t Index) |
| auto | GetDataStreamInstrCount () const noexcept |
| const auto & | GetDataStreamInstrLabels () const noexcept |
| std::string_view | GetDataStreamInstrIconPath () const |
| bool | IsUIInitialized () const noexcept |
| void | SetUIInitialized () noexcept |
Public Member Functions inherited from DynExp::QMLModuleDataBase | |
| QMLModuleDataBase ()=default | |
| virtual | ~QMLModuleDataBase ()=default |
Public Member Functions inherited from DynExp::QModuleDataBase | |
| QModuleDataBase ()=default | |
| virtual | ~QModuleDataBase ()=default |
Public Member Functions inherited from DynExp::ModuleDataBase | |
| ModuleDataBase () | |
| virtual | ~ModuleDataBase () |
| bool | IsExceptionIndicated () const noexcept |
| Getter for HasException. Only performs atomic operations. Hence, this module data instance does not need to be locked for this function call. | |
| std::exception_ptr | GetException () const noexcept |
| Getter for ModuleDataBase::ModuleException. If ModuleDataBase::ModuleException is nullptr and ModuleDataBase::HasException is still true, returns a pointer to a Util::Exception instance. | |
| void | EnqueueEvent (EventPtrType &&Event) |
Enqueues Event at the module event queue's back. Takes ownership of the event. Notifies the module owning the respective ModuleDataBase's instance that a new event has been enqueued. | |
| EventPtrType | PopEvent () |
| Removes one event from the event queue's front and returns the event. Ownership of the event is transferred to the caller of this method. | |
| const auto & | GetEventFront () const noexcept |
| Returns a pointer to the event in the front of the module's event queue without transferring ownership and without removing the event from the queue. | |
| auto & | GetEventFront () noexcept |
| Returns a pointer to the event in the front of the module's event queue without transferring ownership and without removing the event from the queue. | |
| size_t | GetNumEnqueuedEvents () const noexcept |
| Getter for the module event queue's length. | |
| void | RunQueue () |
| Wakes up a module waiting for events and forces it to run its main loop once. | |
Public Member Functions inherited from Util::INonCopyable | |
| INonCopyable (const INonCopyable &)=delete | |
| INonCopyable & | operator= (const INonCopyable &)=delete |
Public Attributes | |
| bool | Running |
| bool | RollingView |
| bool | Autoscale |
| Graph::LineGraphPlotInfo | PlotInfo |
| std::vector< SampleDataType > | SampleDataList |
Public Attributes inherited from DynExp::ModuleDataBase | |
| ModuleBaseOnlyType | ModuleBaseOnly |
Allow exclusive access to some of ModuleDataBase's private methods to ModuleBase. | |
| ModuleThreadOnlyType | ModuleThreadOnly |
Allow exclusive access to some of ModuleDataBase's private methods to the module thread ModuleThreadMain(). | |
Private Member Functions | |
| void | ResetImpl (dispatch_tag< QMLModuleDataBase >) override final |
| virtual void | ResetImpl (dispatch_tag< SignalPlotterData >) |
| void | Init () |
Private Attributes | |
| bool | UIInitialized |
| DynExp::LinkedObjectWrapperContainerList< DynExpInstr::DataStreamInstrument > | DataStreamInstr |
Additional Inherited Members | |
Public Types inherited from DynExp::ModuleDataBase | |
| using | EventPtrType = std::unique_ptr< EventBase > |
| Pointer owning an event. | |
| using | EventQueueType = std::queue< EventPtrType > |
| A module's event queue is a FIFO queue owning the enqueued events. | |
Protected Member Functions inherited from Util::ISynchronizedPointerLockable | |
| ISynchronizedPointerLockable () | |
| ~ISynchronizedPointerLockable () | |
| Object should never be destroyed before completely unlocked. | |
Protected Member Functions inherited from Util::INonCopyable | |
| constexpr | INonCopyable ()=default |
| ~INonCopyable ()=default | |
Definition at line 19 of file SignalPlotter.h.
| struct DynExpModule::SignalPlotter::SignalPlotterData::SampleDataType |
Definition at line 22 of file SignalPlotter.h.
| Class Members | ||
|---|---|---|
| QList< QPointF > | Samples | Data points of a single data series to plot. |
| bool | Visible = true | Determines whether this series should be processed and plotted. |
|
inline |
Definition at line 35 of file SignalPlotter.h.
|
virtualdefault |
|
inline |
Definition at line 41 of file SignalPlotter.h.
|
inlinenoexcept |
Definition at line 42 of file SignalPlotter.h.
|
inline |
Definition at line 44 of file SignalPlotter.h.
|
inlinenoexcept |
Definition at line 43 of file SignalPlotter.h.
|
private |
Definition at line 15 of file SignalPlotter.cpp.
|
inlinenoexcept |
Definition at line 46 of file SignalPlotter.h.
|
inline |
Definition at line 38 of file SignalPlotter.h.
|
finaloverrideprivate |
Definition at line 10 of file SignalPlotter.cpp.
|
inlineprivatevirtual |
Definition at line 58 of file SignalPlotter.h.
|
inlinenoexcept |
Definition at line 47 of file SignalPlotter.h.
|
inline |
Definition at line 39 of file SignalPlotter.h.
| bool DynExpModule::SignalPlotter::SignalPlotterData::Autoscale |
Definition at line 51 of file SignalPlotter.h.
|
private |
Definition at line 64 of file SignalPlotter.h.
| Graph::LineGraphPlotInfo DynExpModule::SignalPlotter::SignalPlotterData::PlotInfo |
Definition at line 53 of file SignalPlotter.h.
| bool DynExpModule::SignalPlotter::SignalPlotterData::RollingView |
Definition at line 50 of file SignalPlotter.h.
| bool DynExpModule::SignalPlotter::SignalPlotterData::Running |
Definition at line 49 of file SignalPlotter.h.
| std::vector<SampleDataType> DynExpModule::SignalPlotter::SignalPlotterData::SampleDataList |
Definition at line 54 of file SignalPlotter.h.
|
private |
Definition at line 62 of file SignalPlotter.h.