MNE-CPP 0.1.9
A Framework for Electrophysiology
Loading...
Searching...
No Matches
sourceestimateview.cpp
Go to the documentation of this file.
1//=============================================================================================================
36//=============================================================================================================
37// INCLUDES
38//=============================================================================================================
39
40#include "sourceestimateview.h"
41
42#include "../engine/model/data3Dtreemodel.h"
43#include "../engine/model/items/sourcedata/mnedatatreeitem.h"
44
45#include <fs/surfaceset.h>
46#include <fs/annotationset.h>
47
49
50//=============================================================================================================
51// QT INCLUDES
52//=============================================================================================================
53
54//=============================================================================================================
55// USED NAMESPACES
56//=============================================================================================================
57
58using namespace DISP3DLIB;
59using namespace MNELIB;
60using namespace FSLIB;
61
62//=============================================================================================================
63// DEFINE MEMBER METHODS
64//=============================================================================================================
65
67 Qt::WindowFlags f)
68: AbstractView(parent, f)
69{
70}
71
72//=============================================================================================================
73
77
78//=============================================================================================================
79
81 const QString& sMeasurementSetName,
82 const MNESourceEstimate& tSourceEstimate,
83 const MNEForwardSolution& tForwardSolution,
84 const SurfaceSet& tSurfSet,
85 const AnnotationSet& tAnnotSet)
86{
87 //Add network data
88 return m_pData3DModel->addSourceData(sSubject,
89 sMeasurementSetName,
90 tSourceEstimate,
91 tForwardSolution,
92 tSurfSet,
93 tAnnotSet);
94}
MNEForwardSolution class declaration, which provides the forward solution including the source space ...
AnnotationSet class declaration.
SurfaceSet class declaration.
SourceEstimateView class declaration.
Provides a generic brain tree item to hold real time data.
Adapter which provides the abstract class for all adapter views.
QSharedPointer< DISP3DLIB::Data3DTreeModel > m_pData3DModel
MneDataTreeItem * addData(const QString &sSubject, const QString &sMeasurementSetName, const MNELIB::MNESourceEstimate &tSourceEstimate, const MNELIB::MNEForwardSolution &tForwardSolution, const FSLIB::SurfaceSet &tSurfSet, const FSLIB::AnnotationSet &tAnnotSet)
SourceEstimateView(QWidget *parent=0, Qt::WindowFlags f=Qt::Widget)
Annotation set.
A hemisphere set of surfaces.
Definition surfaceset.h:72