Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
NSXTool
Manage
Activity
Members
Labels
Plan
Issues
55
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Scientific Software
NSXTool
Merge requests
!167
Feature/geometry
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Feature/geometry
feature/geometry
into
develop
Overview
0
Commits
3
Pipelines
1
Changes
8
Merged
Jonathan Fisher
requested to merge
feature/geometry
into
develop
6 years ago
Overview
0
Commits
3
Pipelines
1
Changes
8
Expand
Python notebook for geometry refinement
Update Biodiff geometry in yaml
Fix minor GUI bugs
0
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
bb6c039c
3 commits,
6 years ago
8 files
+
801
−
290163
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
8
Search (e.g. *.vue) (Ctrl+P)
apps/nsxqt/models/DataItem.cpp
+
5
−
1
Options
@@ -186,7 +186,11 @@ void DataItem::findPeaks()
nsx
::
debug
()
<<
"Peak search complete., found "
<<
peaks
.
size
()
<<
" peaks."
;
auto
peaks_item
=
experimentItem
()
->
peaksItem
();
model
()
->
setData
(
peaks_item
->
index
(),
QVariant
::
fromValue
(
peaks
),
Qt
::
UserRole
);
auto
item
=
new
PeakListItem
(
peaks
);
item
->
setText
(
"Found peaks"
);
peaks_item
->
appendRow
(
item
);
//model()->setData(peaks_item->index(),QVariant::fromValue(peaks),Qt::UserRole);
}
nsx
::
DataList
DataItem
::
selectedData
()
Loading