▼ datatransfer | |
► databroker | |
► src | |
main.cpp | Data Broker application. A Data Broker is the access point in the system for data producer applications to inject data into the system and for data consumer applications to receive data produced by the system. It therefore creates a MAL Server waiting for connections |
wscript | |
► databrokerlib | |
► src | |
► include | |
► ddt | |
ddtClient.hpp | Client class for the connection to remote brokers. This class creates MAL clients to connect to remote brokers. It provides a connection listener which observes the connection state and reregisters subscribers in the case a broker was restarted. It also provides the heartbeat functionality |
ddtConnectionManager.hpp | Connection Manager. This class manages the connection handling between Data Brokers and Publisher / Subscriber applications |
ddtDataBroker.hpp | Data Broker. A Data Broker is the access point in the system for data producer applications to inject data into the system and for data consumer applications to receive data produced by the system. It therefore creates a MAL Server waiting for connections |
ddtDataConsumer.hpp | Data Consumer. This class provides the functionality to subscribe to a data stream, to write the received data into shared memory and to notify DdtDataSubscribers that new data is available. There will be one data consumer object per data stream identifier and thus several DdtDataSubscribers may share one consumer object |
ddtDataProducer.hpp | Data Producer. This class provides the functionality to publish data over network and enables sending new data notifications |
ddtMemoryManager.hpp | Manager for shared memories. This class manages the handling of shared memories |
ddtProducerConsumerBase.hpp | Base class for DdtDataProducer and DdtDataConsumer. This class serves as a base class for DdtDataProducer and DdtDataConsumer classes. It provides the ReadIni() and GetFreePort() functions for derived classes |
ddtPublisher.hpp | MAL Publisher. This class provides the functionality to create MAL Publishers used for publishing data packets or for notifying other components that new data is available |
ddtClient.cpp | Client class for the connection to remote brokers. This class creates MAL clients to connect to remote brokers. It provides a connection listener which observes the connection state and reregisters subscribers in the case a broker was restarted. It also provides the heartbeat functionality |
ddtConnectionManager.cpp | Connection Manager. This class manages the connection handling between Data Brokers and Publisher / Subscriber applications |
ddtDataBroker.cpp | Data Broker. A Data Broker is the access point in the system for data producer applications to inject data into the system and for data consumer applications to receive data produced by the system. It therefore creates a MAL Server waiting for connections |
ddtDataConsumer.cpp | Data Consumer. This class provides the functionality to subscribe to a data stream, to write the received data into shared memory and to notify DdtDataSubscribers that new data is available. There will be one data consumer object per data stream identifier and thus several DdtDataSubscribers may share one consumer object |
ddtDataProducer.cpp | Data Producer. This class provides the functionality to publish data over network and enables sending new data notifications |
ddtMemoryManager.cpp | Manager for shared memories. This class manages the handling of shared memories |
ddtProducerConsumerBase.cpp | Base class for DdtDataProducer and DdtDataConsumer. This class serves as a base class for DdtDataProducer and DdtDataConsumer classes. It provides the ReadIni() and GetFreePort() functions for derived classes |
ddtPublisher.cpp | MAL Publisher. This class provides the functionality to create MAL Publishers used for publishing data packets or for notifying other components that new data is available |
► test | |
testClient.cpp | Contains unit tests for the class DdtClient |
testConnectionManager.cpp | Contains unit tests for the class DdtConnectionManager |
testDataConsumer.cpp | Contains unit tests for the class DdtDataConsumer |
testMemoryManager.cpp | Contains unit tests for the class DdtMemoryManager |
testProducerConsumerBase.cpp | Contains unit tests for the class DdtProducerConsumerBase |
wscript | |
► datatransferlib | |
► src | |
► include | |
► ddt | |
ddtDataPublisher.hpp | Data Publisher. This class provides the functionality for publisher applications to register / unregister at a local broker and to publish data for a specified data stream |
ddtDataPublisherApplication.hpp | Simulator for sending data. This is a base class for data publisher applications |
ddtDataSubscriber.hpp | Data Subscriber. This class provides the functionality for subscriber applications to register / unregister at a local broker and to receive data for a specified data stream |
ddtDataSubscriberApplication.hpp | Simulator for receiving data. This is a base class for data subscriber applications |
ddtDataTransferFactory.hpp | Factory for DdtDataPublishers and DdtDataSubscribers. This class provides factory methods for creating DdtDataPublishers and DdtDataSubscribers |
ddtDataTransferLib.hpp | Base class for DdtDataPublishers and DdtDataSubscribers. This is the base class for DdtDataPublishers and DdtDataSubscribers |
ddtStatisticsClient.hpp | Class for providing statistics. This class provides an API to query the statistics from a broker |
ddtDataPublisher.cpp | Data Publisher. This class provides the functionality for publisher applications to register / unregister at a local broker and to publish data for a specified data stream |
ddtDataSubscriber.cpp | Data Subscriber. This class provides the functionality for subscriber applications to register / unregister at a local broker and to receive data for a specified data stream |
ddtDataTransferFactory.cpp | Factory for DdtDataPublishers and DdtDataSubscribers. This class provides factory methods for creating DdtDataPublishers and DdtDataSubscribers |
ddtDataTransferLib.cpp | Base class for DdtDataPublishers and DdtDataSubscribers. This is the base class for DdtDataPublishers and DdtDataSubscribers |
ddtStatisticsClient.cpp | Class for providing statistics. This class provides an API to query the statistics from a broker |
► test | |
testDataPublisher.cpp | Contains unit tests for the class DdtDataPublisher |
testDataPublisher2.cpp | Contains unit tests for the class DdtDataPublisher |
testDataSubscriber.cpp | Contains unit tests for the class DdtDataSubscriber |
testDataSubscriber2.cpp | Contains unit tests for the class DdtDataSubscriber |
testDataTransferLib.cpp | Contains unit tests for the class DdtDataTransferLib |
testDataTransferLib2.cpp | Contains unit tests for the class DdtDataTransferLib |
wscript | |
► encoderdecoder | |
► src | |
► include | |
► ddt | |
ddtEncDec.hpp | Base class for encoding / decoding of data samples. This is the base class for encoding / decoding of data samples |
ddtEncDecBinaryxD.hpp | DDT EncDecMultiDim. Class to encode / decode multi-dimensional array data samples. Class to encode / decode multi-dimensional array data samples |
ddtEncDecImage2D.hpp | DDT EncDecImage2D. Class to encode / decode 2-dimensional data samples containing image data. Class to encode / decode 2-dimensional data samples containing image data |
ddtEncDecImage3D.hpp | DDT EncDecMultiLayer. Class to encode / decode multi-layer image data samples. Class to encode / decode multi-layer image data samples |
ddtEncDec.cpp | Base class for encoding / decoding of data samples. This is the base class for encoding / decoding of data samples |
ddtEncDecBinaryxD.cpp | DDT EncDecMultiDim. Class to encode / decode multi-dimensional array data samples. Class to encode / decode multi-dimensional array data samples |
ddtEncDecImage2D.cpp | DDT EncDecImage2D. Class to encode / decode 2-dimensional data samples containing image data. Class to encode / decode 2-dimensional data samples containing image data |
ddtEncDecImage3D.cpp | DDT EncDecMultiLayer. Class to encode / decode multi-layer image data samples. Class to encode / decode multi-layer image data samples |
wscript | |
► memoryaccessorlib | |
► src | |
► include | |
► ddt | |
ddtCrc32.hpp | |
ddtMemoryAccessor.hpp | Accessor for a shared memory. This class provides the functionalities to access created shared memories (especially read and write functionality) |
ddtCrc32.cpp | |
ddtMemoryAccessor.cpp | Accessor for a shared memory. This class provides the functionalities to access created shared memories (especially read and write functionality) |
► test | |
testMemoryAccessor.cpp | Contains unit tests for the class DdtMemoryAccessor |
wscript | |
► publishersimulator | |
► src | |
► include | |
► ddt | |
ddtPublisherSimulator.hpp | Simulator for sending data. This is a simulator for publishing data. Data is read from a directory containing FITS files |
ddtPublisherSimulator.cpp | Simulator for sending data. This is a simulator for publishing data. Data is read from a directory containing FITS files |
main.cpp | Simulator for sending data. This is a simulator for sending data as a publisher application. The simulator connects to a local Broker and publishes data on a given publishing URI |
wscript | |
► subscribersimulator | |
► src | |
► include | |
► ddt | |
ddtSubscriberSimulator.hpp | Simulator for receiving data. This is a simulator for receiving data from a publisher application. The simulator connects to a local Broker and either receives data from a remote publisher or from a local publisher |
ddtSubscriberSimulator.cpp | Simulator for receiving data. This is a simulator for receiving data from a publisher application. The simulator connects to a local Broker and either receives data from a remote publisher or from a local publisher |
main.cpp | Simulator for receiving data. This is a simulator for receiving data from a publisher application. The simulator connects to a local Broker and either receives data from a remote publisher or from a local publisher |
wscript | |
wscript | |
▼ datavisualisation | |
► graphics | |
► src | |
► include | |
► ddt | |
ddtFileBasedOverlay.hpp | DDT Graphics. Class for the DDT File Based Overlays. This class is used to load a json overlay file which contains graphics to be drawn at startup. Each of those elements will be a DdtGraphicalElement (which can be lines, rectangles, ellipses, crosses or text) |
ddtGraphicalElement.hpp | DDT Graphics. Base Class for the DDT Graphical Elements. Elements can be lines, ovals, rectangles etc |
ddtGraphicalElementCompass.hpp | DDT Graphics. Class for compass elements. Class for the Graphical Elements - Compass |
ddtGraphicalElementCross.hpp | DDT Graphics. Class for crosses. Class for the Graphical Elements - Cross |
ddtGraphicalElementEllipse.hpp | DDT Graphics. Class for ellipse and circle elements. Class for the Graphical Elements - Ellipses and Circles |
ddtGraphicalElementImage.hpp | DDT Graphics. Class for images. Class for the Graphical Elements - Image |
ddtGraphicalElementLine.hpp | DDT Graphics. Class for lines. Class for the Graphical Elements - Line |
ddtGraphicalElementPickMarker.hpp | DDT Graphics. Class for pick marker. Class for the Graphical Elements - Pick marker |
ddtGraphicalElementProperties.hpp | DDT Graphics. Class for common properties of graphical elements like line width, colour etc. Class for the Graphical Elements Properties |
ddtGraphicalElementRectangle.hpp | DDT Graphics. Class for rectangle elements. Class for the Graphical Elements - Rectangles |
ddtGraphicalElementRefLine.hpp | DDT Graphics. Class for reference line elements. Class for the Graphical Elements - Reference Line |
ddtGraphicalElements.hpp | DDT Graphics. Include file to include all supported graphical element types. Include list for the Graphical Elements |
ddtGraphicalElementSlit.hpp | DDT Graphics. Class for slit elements. Class for the Graphical Elements - Slit |
ddtGraphicalElementStatRectangle.hpp | DDT Graphics. Class for rectangles for statistics. Class for the Graphical Elements - Statistics Rectangle |
ddtGraphicalElementText.hpp | DDT Graphics. Class for text. Class for the Graphical Elements - Text |
ddtGraphicalOverlay.hpp | DDT Graphics. Class for the DDT Graphical Overlays. This class can be used to build a set of overlay elements. Each of those elements will be a DdtGraphicalElement (which can be lines, ovals, rectangles etc.) Class for the Graphical Overlays |
ddtOverlayRendering.hpp | DDT Graphics. Class for the rendering of graphical elements into the view. Class for the Graphical Overlays |
ddtFileBasedOverlay.cpp | DDT Graphics. Class for the DDT File Based Overlays. This class is used to load a json overlay file which contains graphics to be drawn at startup. Each of those elements will be a DdtGraphicalElement (which can be lines, rectangles, ellipses, crosses or text) |
ddtGraphicalElement.cpp | DDT Graphics. Base Class for the DDT Graphical Elements. Elements can be lines, ovals, rectangles etc |
ddtGraphicalElementCompass.cpp | DDT Graphics. Class for compass elements. Class for the Graphical Elements - Compass |
ddtGraphicalElementCross.cpp | DDT Graphics. Class for crosses. Class for the Graphical Elements - Cross |
ddtGraphicalElementEllipse.cpp | DDT Graphics. Class for ellipse and circle elements. Class for the Graphical Elements - Ellipses and Circles |
ddtGraphicalElementImage.cpp | DDT Graphics. Class for images. Class for the Graphical Elements - Image |
ddtGraphicalElementLine.cpp | DDT Graphics. Class for lines. Class for the Graphical Elements - Line |
ddtGraphicalElementPickMarker.cpp | |
ddtGraphicalElementProperties.cpp | DDT Graphics. Class for common properties of graphical elements like line width, colour etc. Class for the Graphical Elements Properties |
ddtGraphicalElementRectangle.cpp | DDT Graphics. Class for rectangle elements. Class for the Graphical Elements - Rectangles |
ddtGraphicalElementRefLine.cpp | DDT Graphics. Class for reference line elements. Class for the Graphical Elements - Reference Line |
ddtGraphicalElementSlit.cpp | DDT Graphics. Class for slit elements. Class for the Graphical Elements - Slit |
ddtGraphicalElementStatRectangle.cpp | DDT Graphics. Class for rectangles for statistics. Class for the Graphical Elements - Statistics Rectangle |
ddtGraphicalElementText.cpp | DDT Graphics. Class for text. Class for the Graphical Elements - Text |
ddtGraphicalOverlay.cpp | DDT Graphics. Class for the DDT Graphical Overlays. This class can be used to build a set of overlay elements. Each of those elements will be a DdtGraphicalElement (which can be lines, ovals, rectangles etc.) Class for the Graphical Overlays |
ddtOverlayRendering.cpp | DDT Graphics. Class for the rendering of graphical elements into the view. Class for the Graphical Overlays |
wscript | |
► plugins | |
► src | |
► include | |
► ddt | |
ddtColourmapWidgetPlugin.hpp | DDT Widgets. Class for the DDT Colourmap Widget Plugin. Class for the Colourmap Widget Plugin. Used to have a Qt Designer Plugin of the Colourmap Widget |
ddtCubeNavigationWidgetPlugin.hpp | DDT Widgets. Class for the DDT Cube Navigation Widget Plugin. Class for the Cube Navigation Widget Plugin. Used to have a Qt Designer Plugin of the Cube Navigation Widget |
ddtCursorInfoWidgetPlugin.hpp | DDT Widgets. Class for the DDT Cursor Info Widget Plugin. Class for the Cursor Info Widget Plugin. Used to have a Qt Designer Plugin of the Cursor Information Widget. Cursor info widget will be used to display: |
ddtCutValuesWidgetPlugin.hpp | DDT Widgets. Class for the DDT Cut Values Widget Plugin. Class for the Cut Values Widget Plugin. Used to have a Qt Designer Plugin of the Cut Values Widget. Cut value widget can be used to: |
ddtDataStreamWidgetPlugin.hpp | DDT Widgets. Class for the DDT Data Stream Widget Plugin. Class for the Data Stream Widget Plugin. Used to have a Qt Designer Plugin of the Data Stream Widget. The Data Stream Widget will allow the application to attach to or detach from a given data stream. Available data streams (URIs) can be defined in a separate configuration file. The display name of the stream can be modified |
ddtFlipRotateWidgetPlugin.hpp | DDT Widgets. Class for the DDT Flip Rotate Widget Plugin. Class for the Flip Rotate Widget Plugin. Used to have a Qt Designer Plugin of the Flip Rotate Widget |
ddtImageScaleWidgetPlugin.hpp | DDT Widgets. Class for the DDT Image Scale Widget Plugin. Class for the Image Scale Widget Plugin. Used to have a Qt Designer Plugin of the Image Scale Widget |
ddtImageWidgetPlugin.hpp | DDT Widgets. Class for the DDT Image Widget Plugin. Class for the Image Widget Plugin. Used to have a Qt Designer Plugin of the Image Widget. The Image Widget can be connected to various other widgets or dialogs. Connection is done via Qt signals and slots |
ddtMagnificationWidgetPlugin.hpp | DDT Widgets. Class for the DDT Magnification Widget Plugin. Class for the Magnification Widget Plugin. Used to have a Qt Designer Plugin of the Magnification Widget |
ddtPanningWidgetPlugin.hpp | DDT Widgets. Class for the DDT Panning Widget Plugin. Class for the Panning Widget Plugin. Used to have a Qt Designer Plugin of the Panning Widget |
ddtScaleButtonsWidgetPlugin.hpp | DDT Widgets. Class for the DDT Scale Buttons Widget Plugin. Class for the Scale Buttons Widget Plugin. Used to have a Qt Designer Plugin of the Scale Buttons Widget. Scale buttons will allow the user to zoom into the image zoom out of the image go to the default scale |
ddtWidgetsPlugin.hpp | DDT Widgets. Class for the collection of DDT Widgets. Class which contains the collection of all DDT Widgets as a single library. This plugin class is used to make the collection of plugins available for the Qt designer |
ddtColourmapWidgetPlugin.cpp | DDT Widgets. Class for the DDT Colourmap Widget Plugin. Class for the Colourmap Widget Plugin. Used to have a Qt Designer Plugin of the Colourmap Widget |
ddtCubeNavigationWidgetPlugin.cpp | DDT Widgets. Class for the DDT Cube Navigation Widget Plugin. Class for the Cube Navigation Widget Plugin. Used to have a Qt Designer Plugin of the Cube Navigation Widget |
ddtCursorInfoWidgetPlugin.cpp | DDT Widgets. Class for the DDT Cursor Info Widget Plugin. Class for the Cursor Info Widget Plugin. Used to have a Qt Designer Plugin of the Cursor Information Widget. Cursor info widget will be used to display: |
ddtCutValuesWidgetPlugin.cpp | DDT Widgets. Class for the DDT Cut Values Widget Plugin. Class for the Cut Values Widget Plugin. Used to have a Qt Designer Plugin of the Cut Values Widget. Cut value widget can be used to: |
ddtDataStreamWidgetPlugin.cpp | DDT Widgets. Class for the DDT Data Stream Widget Plugin. Class for the Data Stream Widget Plugin. Used to have a Qt Designer Plugin of the Data Stream Widget. The Data Stream Widget will allow the application to attach to or detach from a given data stream. Available data streams (URIs) can be defined in a separate configuration file. The display name of the stream can be modified |
ddtFlipRotateWidgetPlugin.cpp | DDT Widgets. Class for the DDT Flip Rotate Widget Plugin. Class for the Flip Rotate Widget Plugin. Used to have a Qt Designer Plugin of the Flip Rotate Widget |
ddtImageScaleWidgetPlugin.cpp | DDT Widgets. Class for the DDT Image Scale Widget Plugin. Class for the Image Scale Widget Plugin. Used to have a Qt Designer Plugin of the Image Scale Widget |
ddtImageWidgetPlugin.cpp | DDT Widgets. Class for the DDT Image Widget Plugin. Class for the Image Widget Plugin. Used to have a Qt Designer Plugin of the Image Widget. The Image Widget can be connected to various other widgets or dialogs. Connection is done via Qt signals and slots |
ddtMagnificationWidgetPlugin.cpp | DDT Widgets. Class for the DDT Magnification Widget Plugin. Class for the Magnification Widget Plugin. Used to have a Qt Designer Plugin of the Magnification Widget |
ddtPanningWidgetPlugin.cpp | DDT Widgets. Class for the DDT Panning Widget Plugin. Class for the Panning Widget Plugin. Used to have a Qt Designer Plugin of the Panning Widget |
ddtScaleButtonsWidgetPlugin.cpp | DDT Widgets. Class for the DDT Scale Buttons Widget Plugin. Class for the Scale Buttons Widget Plugin. Used to have a Qt Designer Plugin of the Scale Buttons Widget. Scale buttons will allow the user to zoom into the image zoom out of the image go to the default scale |
ddtWidgetsPlugin.cpp | DDT Widgets. Class for the collection of DDT Widgets. Class which contains the collection of all DDT Widgets as a single library. This plugin class is used to make the collection of plugins available for the Qt designer |
wscript | |
► remoteclient | |
► src | |
main.cpp | DDT Remote Client. A test application for the remote interface to the DDT Viewer. Main class for the remote client application |
wscript | |
► remotecontrol | |
► src | |
► include | |
► ddt | |
ddtRemoteClient.hpp | DDT Remote Client. A library for the remote interface to the DDT Viewer. DDT Viewer. Class for the remote client library |
ddtRemoteControl.hpp | DDT Remote Control. Remote control interface for the DDT GUIs. Library class for the remote control interface |
ddtRemoteClient.cpp | DDT Remote Client. A library for the remote interface to the DDT Viewer. DDT Viewer. Class for the remote client library |
ddtRemoteControl.cpp | DDT Remote Control. Remote control interface for the DDT GUIs. Library class for the remote control interface |
► test | |
testRemoteControl.cpp | Contains unit tests for the class DdtRemoteControl |
wscript | |
► rendering | |
► src | |
► include | |
► ddt | |
ddtCPLImageGraphicsItem.hpp | DDT Widgets. Class for CPL Image Graphics Items. Class derived from QGraphicsItem. Allows to render a CPL image as a QGraphicsItem. The supported image types can have different types like int, float, double |
ddtImageGraphicsItem.hpp | DDT Widgets. Class for Image Graphics Items. Class derived from QGraphicsItem. Base class for all types of DDT Images |
ddtRenderingPlugin.hpp | DDT Widgets. Base class for rendering plugins. Base class for rendering plugins |
ddtRenderingPluginCPLImages.hpp | DDT Widgets. Class for rendering of CPL images. Derived class for rendering of CPL images. CPL images can support various data types |
ddtCPLImageGraphicsItem.cpp | DDT Widgets. Class for CPL Image Graphics Items. Class derived from QGraphicsItem. Allows to render a CPL image as a QGraphicsItem. The supported image types can have different types like int, float, double |
ddtImageGraphicsItem.cpp | DDT Widgets. Class for Image Graphics Items. Class derived from QGraphicsItem. Base class for all types of DDT Images |
ddtRenderingPlugin.cpp | DDT Widgets. Base class for rendering plugins. Base class for rendering plugins |
ddtRenderingPluginCPLImages.cpp | DDT Widgets. Class for rendering of CPL images. Derived class for rendering of CPL images. CPL images can support various data types |
wscript | |
► testviewer | |
► src | |
► include | |
► ddt | |
ddtCPLInversGraphicsItem.hpp | Example for a inverted graphics item. This is an example for a different rendering engine. It will use CPL images and render them as an inverted image |
ddtRenderingPluginCPLInvers.hpp | Example for a different rendering plugin. This is an example for a different rendering engine. It will use CPL images and render them as inverted image |
ddtTestViewer.hpp | Class for the DDT Test Viewer. This is the main class for the DDT Test Viewer. This test viewer can be used to test some features of the DDT widget library |
myPickObjectDialog.hpp | Class for the Pick Object dialog. Contains an additional GUI element. Class for the Pick Object dialog. Contains an additional GUI element |
ddtCPLInversGraphicsItem.cpp | Example for a inverted graphics item. This is an example for a different rendering engine. It will use CPL images and render them as an inverted image |
ddtRenderingPluginCPLInvers.cpp | Example for a different rendering plugin. This is an example for a different rendering engine. It will use CPL images and render them as inverted image |
ddtTestViewer.cpp | Class for the DDT Test Viewer. This is the main class for the DDT Test Viewer. This test viewer can be used to test some features of the DDT widget library |
main.cpp | Class for the DDT Test Viewer. Main function for launching the DDT Test Viewer |
myPickObjectDialog.cpp | Class for the Pick Object dialog. Contains an additional GUI element. Class for the Pick Object dialog. Contains an additional GUI element |
wscript | |
► utils | |
► src | |
► include | |
► ddt | |
ddtBrokerConnectDialog.hpp | DDT Dialogs. The dialog allows to connect to the broker |
ddtDatavisualisationDefines.hpp | DDT Utils. Definitions for the data visualisation. Utilities for the DDT Datavisualisation |
ddtDatavisualisationUtils.hpp | DDT Utils. Helper classes for DDT Datavisualisation. Utilities for the DDT Datavisualisation |
ddtGraphicsTextItem.hpp | DDT Utils. Helper classes for DDT Datavisualisation. Utilities for the DDT Datavisualisation |
ddtPointGrabber.hpp | Point grabber for manipulate graphical elements |
ddtBrokerConnectDialog.cpp | DDT Dialogs. The dialog allows to connect to the broker |
ddtDatavisualisationUtils.cpp | DDT Utils. Helper classes for DDT Datavisualisation. Utilities for the DDT Datavisualisation |
ddtGraphicsTextItem.cpp | DDT Utils. Helper classes for DDT Datavisualisation. Utilities for the DDT Datavisualisation |
ddtPointGrabber.cpp | Point grabber for manipulate graphical elements |
wscript | |
► viewer | |
► src | |
► include | |
► ddt | |
ddtViewer.hpp | Class for the DDT Standard Viewer. This is the main class for the DDT Standard Viewer. The used widgets are all included into the viewer using Qt Designer |
ddtViewer.cpp | Class for the DDT Standard Viewer. This is the main class for the DDT Standard Viewer. The used widgets are all included into the viewer using Qt Designer |
main.cpp | Class for the DDT Standard Viewer. Main function for launching the DDT Standard Viewer |
wscript | |
► widgetsdialogs | |
► src | |
► dialogs | |
ddtAboutViewerDialog.cpp | DDT Dialogs. Class for the DDT About Viewer Dialog. Bias dialog displays the current version and respective copyright for the DDT part under ELT ESO project |
ddtBiasDialog.cpp | DDT Dialogs. Class for the DDT Bias Dialog. Bias dialog will allow the user to select images either from disk or a connected data stream to store them in a buffer. Buffered images can then be applied as bias images. This means that when loading images into the image widget the bias image will automatically be subtracted from the loaded image. Up to 5 images can be stored in the bias buffer. Images can be loaded, deleted or displayed from the buffer |
ddtBinaryTableDialog.cpp | DDT Dialogs. Class for the DDT Binary Table Dialog. Dialog to display binary table extensions from a FITS file |
ddtColourmapDialog.cpp | DDT Dialogs. Class for the DDT Colourmap Dialog. The dialogs allows the selection of the current colourmap and scaling functions |
ddtCutValuesDialog.cpp | DDT Dialogs. Class for the DDT Cut Values Dialog. The dialogs allows the selection of cut values. The dialog contains the widget from the widget library |
ddtDataStreamDialog.cpp | DDT Dialogs. Class for the DDT Data Stream Dialog. The dialogs contains the data stream widget from the widget library |
ddtDialog.cpp | DDT Dialogs. Base class for the DDT dialogs. Base class for the DDT dialogs |
ddtDialogFactory.cpp | DDT Dialogs. Factory class for the DDT dialogs. Factory class for the DDT dialogs |
ddtDistanceDialog.cpp | DDT Dialogs. Class for the DDT Distance Dialog. Displays coordinates of a line drawn by the user and the x and y offsets |
ddtFITSHeaderDialog.cpp | DDT Dialogs. Class for the DDT FITS Header Dialog. A dialog to display image FITS Header |
ddtGraphicalElementsDialog.cpp | DDT Dialogs. Class for the DDT Graphical Elements Dialog. The dialog allows the user to select various graphical elements which then can be drawn into the image widget. Elements can also be deleted etc. The various properties for the elements can also be set |
ddtGraphicsControlDialog.cpp | DDT Dialogs. Class for the DDT Graphics Control Dialog. A dialog which allows the user to control graphical elements |
ddtHDUDialog.cpp | DDT Dialogs. Class for the DDT HDU Dialog. A dialog to display image Header Data Units (HDU) |
ddtMagnificationDialog.cpp | DDT Dialogs. Class for the DDT Magnification Dialog. Class for the dialog containing the magnification widget |
ddtMetadataSampleDialog.cpp | |
ddtMonitorSamplesDialog.cpp | |
ddtPickObjectDialog.cpp | DDT Dialogs. Class for the DDT Pick Object Dialog. The dialogs allows to pick objects in the image and retrieve information on it |
ddtPVCMDialog.cpp | DDT Dialogs. Class for the DDT PVCM Dialog. The dialog will display the distribution of pixelvalues versus the values of the colormap. The dialog also offers to select a range of 90, 95, 98, 99, 99.5 or 100 percent of the pixelvalue range to be used as cut values |
ddtReferenceLineDialog.cpp | DDT Dialogs. Class for the DDT Reference Line Dialog. The reference line dialog allows to draw a line in the image widget and then draw a diagram with the pixel distribution along that line. For the data various interpolation methods can be selected |
ddtScaleRotateCutDialog.cpp | DDT Dialogs. Class for the DDT Scale Rotate Cut Dialog. The dialogs allows the selection of cut values, flip, rotate functions and scaling. The dialog contains the widget from the widgets library |
ddtSlitDialog.cpp | DDT Dialogs. Class for the DDT Slit Dialog. The slit dialog will display the slit geometry in the image. The geometry is defined in a configuration file which defines the size, the rotation and the colour of the slit. The dialog allows the user to click in the image, draw the slit and calculate the offset to the slit center |
ddtStatisticDialog.cpp | DDT Dialogs. Class for the DDT Statistic Dialog. The statistics dialog allows the user to draw a rectangle in the image and then retrieve statistical parametes for the selected region. The values can then also be used as cut values |
ddtTabularRegionDialog.cpp | DDT Dialogs. Class for the DDT Tabular Region Dialog. Dialog to display in tabular format the pixel values of a region |
► include | |
► ddt | |
► dialogs | |
ddtAboutViewerDialog.hpp | DDT Dialogs. Class for the DDT Bias Dialog. Bias dialog displays the current version and respective copyright for the DDT part under ELT ESO project |
ddtBiasDialog.hpp | DDT Dialogs. Class for the DDT Bias Dialog. Bias dialog will allow the user to select images either from disk or a connected data stream to store them in a buffer. Buffered images can then be applied as bias images. This means that when loading images into the image widget the bias image will automatically be subtracted from the loaded image. Up to 5 images can be stored in the bias buffer. Images can be loaded, deleted or displayed from the buffer |
ddtBinaryTableDialog.hpp | DDT Dialogs. Class for the DDT Binary Table Dialog. Dialog to display binary table extensions from a FITS file |
ddtColourmapDialog.hpp | DDT Dialogs. Class for the DDT Colourmap Dialog. The dialogs allows the selection of the current colourmap and scaling functions |
ddtCutValuesDialog.hpp | DDT Dialogs. Class for the DDT Cut Values Dialog. The dialogs allows the selection of cut values. The dialog contains the widget from the widget library |
ddtDataStreamDialog.hpp | DDT Dialogs. Class for the DDT Data Stream Dialog. The dialogs contains the data stream widget from the widget library |
ddtDialog.hpp | DDT Dialogs. Base class for the DDT dialogs. Base class for the DDT dialogs |
ddtDialogFactory.hpp | DDT Dialogs. Factory class for the DDT dialogs. Factory class for the DDT dialogs |
ddtDialogIds.hpp | DDT Dialog IDs. ID values for all used dialogs. IDs for the used dialogs |
ddtDialogs.hpp | DDT Dialogs. Includes the headers of all supported dialogs. Include file for all dialogs classes. Will include the headers of all supported dialog classes |
ddtDistanceDialog.hpp | DDT Dialogs. Class for the DDT Distance Dialog. Displays coordinates of a line drawn by the user and the x and y offsets |
ddtFITSHeaderDialog.hpp | DDT Dialogs. Class for the DDT FITS Header Dialog. A dialog to display image FITS Header |
ddtGraphicalElementsDialog.hpp | DDT Dialogs. Class for the DDT Graphical Elements Dialog. The dialog allows the user to select various graphical elements which then can be drawn into the image widget. Elements can also be deleted etc. The various properties for the elements can also be set |
ddtGraphicsControlDialog.hpp | DDT Dialogs. Class for the DDT Graphics Control Dialog. A dialog which allows the user to control graphical elements |
ddtHDUDialog.hpp | DDT Dialogs. Class for the DDT HDU Dialog. A dialog to display image Header Data Units (HDU) |
ddtMagnificationDialog.hpp | DDT Dialogs. Class for the DDT Magnification Dialog. Class for the dialog containing the magnification widget |
ddtMetadataSampleDialog.hpp | DDT Dialogs. Class for the DDT Metadata Sample Dialog. Metadata Sample dialog displays the current image metadata information |
ddtMonitorSamplesDialog.hpp | DDT Dialogs. Class for the DDT Monitor Samples Dialog. Monitor Samples dialog displays the current data regarding the behavior of of the DDT Broker and current subscription that read the streaming data |
ddtPickObjectDialog.hpp | DDT Dialogs. Class for the DDT Pick Object Dialog. The dialogs allows to pick objects in the image and retrieve information on it |
ddtPVCMDialog.hpp | DDT Dialogs. Class for the DDT PVCM Dialog. The dialog will display the distribution of pixelvalues versus the values of the colormap. The dialog also offers to select a range of 90, 95, 98, 99, 99.5 or 100 percent of the pixelvalue range to be used as cut values |
ddtReferenceLineDialog.hpp | DDT Dialogs. Class for the DDT Reference Line Dialog. The reference line dialog allows to draw a line in the image widget and then draw a diagram with the pixel distribution along that line. For the data various interpolation methods can be selected |
ddtScaleRotateCutDialog.hpp | DDT Dialogs. Class for the DDT Scale Rotate Cut Dialog. The dialogs allows the selection of cut values, flip, rotate functions and scaling. The dialog contains the widget from the widgets library |
ddtSlitDialog.hpp | DDT Dialogs. Class for the DDT Slit Dialog. The slit dialog will display the slit geometry in the image. The geometry is defined in a configuration file which defines the size, the rotation and the colour of the slit. The dialog allows the user to click in the image, draw the slit and calculate the offset to the slit center |
ddtStatisticDialog.hpp | DDT Dialogs. Class for the DDT Statistic Dialog. The statistics dialog allows the user to draw a rectangle in the image and then retrieve statistical parametes for the selected region. The values can then also be used as cut values |
ddtTabularRegionDialog.hpp | DDT Dialogs. Class for the DDT Tabular Region Dialog. Dialog to display in tabular format the pixel values of a region |
► widgets | |
ddtColourmapWidget.hpp | DDT Widgets. Class for the DDT Colourmap Widget. The widget will display a colourbar for the given colourmap |
ddtCubeNavigationWidget.hpp | DDT Widgets. Class for the DDT Cube Navigation Widget. Class for the Cube Navigation Widget. Allows to navigate through the layers of a 3D cube image |
ddtCursorInfoWidget.hpp | DDT Widgets. Class for the DDT Cursor Info Widget. Class for the Cursor Info Widget. The widget will display information on the point currently under the mouse pointer |
ddtCutValuesWidget.hpp | DDT Widgets. Class for the DDT Cuts Values Widget. Class for the Cut Values Widget. Allows to set the cut values for display of images in the connected Image Widget |
ddtDataStreamWidget.hpp | DDT Widgets. Class for the DDT Data Stream Widget. Class for the Data Stream Widget. Allows to connect the viewer to a Data Stream |
ddtFlipRotateWidget.hpp | DDT Widgets. Class for the DDT Flip Rotate Widget. Class for the Flip Rotate Widget. Allows to flip or rotate the connected images |
ddtGraphicsView.hpp | DDT Widgets. Class for the Graphics View which is used by the DDT Image Widget. The view is used by the Image Widget to actually display image data and graphical elements |
ddtGraphicsViewDraw.hpp | DDT Widgets. Helper class for the graphics display of the DDT Image Widget. Helper class for the Graphics View of the Image Widget |
ddtImageScaleWidget.hpp | DDT Widgets. Class for the DDT Image Scale Widget. Class for the Image Scale Widget. Allows to set the scale factor for the zooming of the connected Image Widget |
ddtImageWidget.hpp | DDT Widgets. Class for the DDT Image Widget. Class for the Image Widget. The widget is used to display data of various types (e.g. image, plots, etc.) |
ddtMagnificationWidget.hpp | DDT Widgets. Class for the DDT Magnification Widget. The widget will display a magnified part of the original image around the current mouse position |
ddtPanningWidget.hpp | DDT Widgets. Class for the DDT Panning Widget. The widget is used to display a thumbnail image of the image displayed in the connected Image Widget and allow to move a pan rectangle to select the current view |
ddtScaleButtonsWidget.hpp | DDT Widgets. Class for the DDT Scale Buttons Widget. Allows to set the scale factor for the zooming of the connected Image Widget |
ddtWidget.hpp | DDT Widgets. Base class for the DDT widgets. Base class for the DDT widgets |
► widgets | |
ddtColourmapWidget.cpp | DDT Widgets. Class for the DDT Colourmap Widget. The widget will display a colourbar for the given colourmap |
ddtCubeNavigationWidget.cpp | DDT Widgets. Class for the DDT Cube Navigation Widget. Class for the Cube Navigation Widget. Allows to navigate through the layers of a 3D cube image |
ddtCursorInfoWidget.cpp | DDT Widgets. Class for the DDT Cursor Info Widget. Class for the Cursor Info Widget. The widget will display information on the point currently under the mouse pointer |
ddtCutValuesWidget.cpp | DDT Widgets. Class for the DDT Cuts Values Widget. Class for the Cut Values Widget. Allows to set the cut values for display of images in the connected Image Widget |
ddtDataStreamWidget.cpp | DDT Widgets. Class for the DDT Data Stream Widget. Class for the Data Stream Widget. Allows to connect the viewer to a Data Stream |
ddtFlipRotateWidget.cpp | DDT Widgets. Class for the DDT Flip Rotate Widget. Class for the Flip Rotate Widget. Allows to flip or rotate the connected images |
ddtGraphicsView.cpp | DDT Widgets. Class for the Graphics View which is used by the DDT Image Widget. The view is used by the Image Widget to actually display image data and graphical elements |
ddtGraphicsViewDraw.cpp | DDT Widgets. Helper class for the graphics display of the DDT Image Widget. Helper class for the Graphics View of the Image Widget |
ddtImageScaleWidget.cpp | DDT Widgets. Class for the DDT Image Scale Widget. Class for the Image Scale Widget. Allows to set the scale factor for the zooming of the connected Image Widget |
ddtImageWidget.cpp | DDT Widgets. Class for the DDT Image Widget. Class for the Image Widget. The widget is used to display data of various types (e.g. image, plots, etc.) |
ddtMagnificationWidget.cpp | DDT Widgets. Class for the DDT Magnification Widget. The widget will display a magnified part of the original image around the current mouse position |
ddtPanningWidget.cpp | DDT Widgets. Class for the DDT Panning Widget. The widget is used to display a thumbnail image of the image displayed in the connected Image Widget and allow to move a pan rectangle to select the current view |
ddtScaleButtonsWidget.cpp | DDT Widgets. Class for the DDT Scale Buttons Widget. Allows to set the scale factor for the zooming of the connected Image Widget |
ddtWidget.cpp | DDT Widgets. Base class for the DDT widgets. Base class for the DDT widgets |
wscript | |
wscript | |
▼ doc | |
► usermanual | |
► src | |
conf.py | |
wscript | |
wscript | |
▼ icd | |
► ddtdatatransfericd | |
wscript | |
► ddtremotecontrolicd | |
wscript | |
wscript | |
▼ imagehandling | |
► configurationmaps | |
► src | |
► include | |
► ddt | |
configurationMaps.hpp | Configuration Maps class, offers an interface to configuration map access classes. This file is part of the DDT Image Handling Library and provides a class that offers an interface to configuration map access classes |
configurationMapsAccess.hpp | Configuration maps access class, offers access to configuration maps. This file is part of the DDT Image Handling Library and provides a class that offers access to configuration maps |
configurationMapsAccessFiles.hpp | |
informationMaps.hpp | Information Maps class, offers an interface to information map access classes. This file is part of the DDT Image Handling Library and provides a class that offers an interface to information map access classes |
informationMapsAccess.hpp | Information maps access class, offers access to information maps. This file is part of the DDT Image Handling Library and provides a class that offers offers access to information maps |
informationMapsAccessFiles.hpp | Information maps access class, offers access to information maps that are stored in files. This file is part of the DDT Image Handling Library and provides a class that offers access to information maps that are stored in files |
configurationMaps.cpp | Configuration Maps class, offers an interface to configuration map access classes. This file is part of the DDT Image Handling Library and provides a class that offers an interface to configuration map access classes |
configurationMapsAccess.cpp | Configuration maps access class, offers access to configuration maps. This file is part of the DDT Image Handling Library and provides a class that offers access to configuration maps |
configurationMapsAccessFiles.cpp | |
informationMaps.cpp | Information Maps class, offers an interface to information map access classes. This file is part of the DDT Image Handling Library and provides a class that offers an interface to information map access classes |
informationMapsAccess.cpp | Information maps access class, offers access to information maps. This file is part of the DDT Image Handling Library and provides a class that offers offers access to information maps |
informationMapsAccessFiles.cpp | Information maps access class, offers access to information maps that are stored in files. This file is part of the DDT Image Handling Library and provides a class that offers access to information maps that are stored in files |
wscript | |
► fitsfunctions | |
► src | |
► include | |
► ddt | |
imageIO.hpp | Image IO function declaration. This file is part of the DDT Image Handling Library and provides functions to load / save CPL images |
imageIO.cpp | Image IO function declaration. This file is part of the DDT Image Handling Library and provides functions to load / save CPL images |
wscript | |
► imagelibs | |
► disabled_tests | |
testImageLibs_ConfigMaps.cpp | Contains unit tests for the configurationMaps module |
testImageLibs_Coords.cpp | Contains unit tests for the imageCoords module |
testImageLibs_DataTypes.cpp | Contains unit tests for the imageIO module |
testImageLibs_Handling.cpp | Contains unit tests for the imageHandling module |
testImageLibs_IO.cpp | Contains unit tests for the imageIO module |
testImageLibs_Math.cpp | Contains unit tests for the imageMath module |
testImageLibs_Proc.cpp | Contains unit tests for the imageProc module |
testImageLibs_Stats.cpp | Contains unit tests for the imageStats module |
► src | |
► include | |
► ddt | |
biasBuffer.hpp | BIAS Buffer class, handles bias image usage. This file is part of the DDT Image Handling Library and provides a class that handles the bias image usage |
dataAcquisition.hpp | Data acquisition class, offers access to data stream acquisition functions. This file is part of the DDT Image Handling Library and provides a class that offers access to the data stream acquisition functions |
dataFile.hpp | Data file class, offers access to FITS file functions. This file is part of the DDT Image Handling Library and provides a class that offers access to FITS file functions |
imageBuffer.hpp | Image Buffer class, handles internal CPL image. This file is part of the DDT Image Handling Library and provides a class that handles the internal CPL image |
imageColor.hpp | Image Color class, offers access to color map related functions. This file is part of the DDT Image Handling Library and provides functions for color map purposes |
imageCoords.hpp | Image Handling class, offers access to coordinate conversion functions. This file is part of the DDT Image Handling Library and provides functions for coordinate conversion purposes |
imageError.hpp | Image error handling function declaration. This file is part of the DDT Image Handling Library and provides error handling functions for the CPL library |
imageHandling.hpp | Image Handling class, offers access to image handling functions. This file is part of the DDT Image Handling Library and provides a class that offers access to the image handling functions for the CPL library |
imageHelpers.hpp | Helper function declaration. This file is part of the DDT Image Handling Library and provides helper functions for handling of CPL images |
imageMath.hpp | Image arithmetical function declaration. This file is part of the DDT Image Handling Library and provides functions to perform arithmetical computations on CPL images |
imageProc.hpp | Image processing function declaration. This file is part of the DDT Image Handling Library and provides functions to process CPL images |
imageStats.hpp | Image analysis and statistic function declaration. This file is part of the DDT Image Handling Library and provides functions to analyse and calculate statistic values for CPL images |
initCpl.hpp | Image IO function declaration. This file is part of the DDT Image Handling Library and provides initialization functions for the CPL library |
biasBuffer.cpp | BIAS Buffer class, handles bias image usage. This file is part of the DDT Image Handling Library and provides a class that handles the bias image usage |
dataAcquisition.cpp | Data acquisition class, offers access to data stream acquisition functions. This file is part of the DDT Image Handling Library and provides a class that offers access to the data stream acquisition functions |
dataFile.cpp | Data file class, offers access to FITS file functions. This file is part of the DDT Image Handling Library and provides a class that offers access to FITS file functions |
imageBuffer.cpp | Image Buffer class, handles internal CPL image. This file is part of the DDT Image Handling Library and provides a class that handles the internal CPL image |
imageColor.cpp | Image Color class, offers access to color map related functions. This file is part of the DDT Image Handling Library and provides functions for color map purposes |
imageCoords.cpp | Image Handling class, offers access to coordinate conversion functions. This file is part of the DDT Image Handling Library and provides functions for coordinate conversion purposes |
imageError.cpp | Image error handling function declaration. This file is part of the DDT Image Handling Library and provides error handling functions for the CPL library |
imageHandling.cpp | Image Handling class, offers access to image handling functions. This file is part of the DDT Image Handling Library and provides a class that offers access to the image handling functions for the CPL library |
imageHelpers.cpp | Helper function declaration. This file is part of the DDT Image Handling Library and provides helper functions for handling of CPL images |
imageMath.cpp | Image arithmetical function declaration. This file is part of the DDT Image Handling Library and provides functions to perform arithmetical computations on CPL images |
imageProc.cpp | Image processing function declaration. This file is part of the DDT Image Handling Library and provides functions to process CPL images |
imageStats.cpp | Image analysis and statistic function declaration. This file is part of the DDT Image Handling Library and provides functions to analyse and calculate statistic values for CPL images |
initCpl.cpp | Image IO function declaration. This file is part of the DDT Image Handling Library and provides initialization functions for the CPL library |
wscript | |
wscript | |
▼ py | |
► brokerlib | |
► src | |
pyDdtBroker.py | |
pyDdtDataBroker.cpp | Python bindings for the data broker component |
wscript | |
► datatransferlib | |
► src | |
pyDdtDataTransfer.cpp | Python bindings for the data transfer component |
► test | |
testPyDdtDataTransfer.py | |
wscript | |
► datavisualisation | |
► src | |
datavisualisation_bindings.h | Header containing the headers for binding |
► test | |
testPyDdtDataVisualisation.py | |
wscript | |
► ddtviewer | |
► src | |
► pyDdtViewer | |
__init__.py | |
viewer.py | |
pyDdtViewer.py | |
wscript | |
► imagehandling | |
► src | |
ddtimagehandling_bindings.h | Header containing the headers for binding |
► test | |
testPyImageHandling.py | |
wscript | |
► modulehelper | |
► src | |
► ddt | |
► widgets | |
ddtAboutViewerDialog.py | |
ddtBiasDialog.py | |
ddtBinaryTableDialog.py | |
ddtColourmapDialog.py | |
ddtColourmapWidget.py | |
ddtCubeNavigationWidget.py | |
ddtCursorInfoWidget.py | |
ddtCutValuesDialog.py | |
ddtCutValuesWidget.py | |
ddtDataStreamDialog.py | |
ddtDataStreamWidget.py | |
ddtDialog.py | |
ddtDialogFactory.py | |
ddtDistanceDialog.py | |
ddtFileBasedOverlay.py | |
ddtFITSHeaderDialog.py | |
ddtFlipRotateWidget.py | |
ddtGraphicalElement.py | |
ddtGraphicalElementCompass.py | |
ddtGraphicalElementCross.py | |
ddtGraphicalElementEllipse.py | |
ddtGraphicalElementLine.py | |
ddtGraphicalElementPickMarker.py | |
ddtGraphicalElementProperties.py | |
ddtGraphicalElementRectangle.py | |
ddtGraphicalElementRefLine.py | |
ddtGraphicalElementsDialog.py | |
ddtGraphicalElementSlit.py | |
ddtGraphicalElementStatRectangle.py | |
ddtGraphicalElementText.py | |
ddtGraphicalOverlay.py | |
ddtGraphicsControlDialog.py | |
ddtGraphicsView.py | |
ddtGraphicsViewDraw.py | |
ddtHDUDialog.py | |
ddtImageScaleWidget.py | |
ddtImageWidget.py | |
ddtMagnificationDialog.py | |
ddtMagnificationWidget.py | |
ddtMetadataSampleDialog.py | |
ddtOverlayRendering.py | |
ddtPanningWidget.py | |
ddtPickObjectDialog.py | |
ddtPVCMDialog.py | |
ddtReferenceLineDialog.py | |
ddtScaleButtonsWidget.py | |
ddtScaleRotateCutDialog.py | |
ddtSlitDialog.py | |
ddtStatisticDialog.py | |
ddtTabularRegionDialog.py | |
ddtWidget.py | |
pointGrabber.py | |
wscript | |
► remoteapi | |
► src | |
pyDdtRemoteClient.py | |
pyDdtRemoteLib.cpp | Python bindings for the remote component |
wscript | |
► samplepublisher | |
► src | |
pyDdtSamplePublisher.py | |
wscript | |
► utilslib | |
► src | |
pyDdtUtils.cpp | Python bindings for the utility components |
► test | |
testPyDdtUtils.py | |
wscript | |
► viewer | |
► src | |
► pyDdtMultiStreamViewer | |
__init__.py | |
multiStreamViewer.py | |
► pyDdtPlotsViewer | |
► widgets | |
__init__.py | |
graphWidget.py | |
plotStreamWidget.py | |
subscriberParametersWidget.py | |
__init__.py | |
plotsViewer.py | |
► utils | |
__init__.py | |
pyDdtImageWidget.py | |
pyDdtMultiStreamViewer.py | |
pyDdtPlotsViewer.py | |
wscript | |
shiboken_helper.py | |
wscript | |
▼ utils | |
► auxiliaryfunctions | |
► src | |
► include | |
► ddt | |
ddtAuxiliaryFunctions.hpp | Set of auxiliary functions. This file provides a set of auxiliary functions |
ddtAuxiliaryFunctions.cpp | |
wscript | |
► commandlinelib | |
► src | |
► include | |
► ddt | |
commandLineParser.hpp | Class for parsing command line arguments. The commandline parser shall parse the required arguments for each DDT application. Different parsers are used for the broker, the publisher, the subscriber, the viewer and the remote client. The parser will display the required and the optional arguments when using the help command |
commandLineParser.cpp | Class for parsing command line arguments. The commandline parser shall parse the required arguments for each DDT application. Different parsers are used for the broker, the publisher, the subscriber, the viewer and the remote client. The parser will display the required and the optional arguments when using the help command |
► test | |
testCommandLineParser.cpp | |
wscript | |
► logginglib | |
► src | |
► include | |
► ddt | |
ddtLogger.hpp | Class to wrap the usage of log4cplus as logging utility. This file provides a wrapper class for the usage of log4cplus as logging utility |
ddtLogger.cpp | Class to wrap the usage of log4cplus as logging utility. This file provides a wrapper class for the usage of log4cplus as logging utility |
wscript | |
► metadatalib | |
► interface | |
MetaData.proto | |
wscript | |
► sharedheaders | |
► src | |
► include | |
► ddt | |
ddtConstants.hpp | Contains common used constants. This file shall contain constants that can be used by all applications |
ddtErrorCodes.hpp | Contains common used error codes. This file shall contain error codes that can be used by all applications |
ddtInitCodes.hpp | Contains return codes for Init() method. This file shall contain return codes that can be used by all applications |
wscript | |
► statistics | |
► src | |
► include | |
► ddt | |
ddtStatistics.hpp | Statistics for the monitoring API. This struct contains the raw values for the monitoring API |
wscript | |
wscript | |
wscript | |