Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
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
mlz
BornAgain
Merge requests
!1368
decouple Offspec from GISAS: the former has always a spherical detector
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
decouple Offspec from GISAS: the former has always a spherical detector
i420a
into
main
Overview
0
Commits
6
Pipelines
2
Changes
19
Merged
Wuttke, Joachim
requested to merge
i420a
into
main
2 years ago
Overview
0
Commits
6
Pipelines
2
Changes
1
Expand
0
0
Merge request reports
Compare
version 1
version 1
3cabdc57
2 years ago
main (base)
and
latest version
latest version
989c49ab
6 commits,
2 years ago
version 1
3cabdc57
6 commits,
2 years ago
Show latest version
1 file
+
2
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
GUI/Model/Device/InstrumentItems.cpp
+
2
−
2
Options
@@ -756,8 +756,8 @@ const ICoordSystem* OffspecInstrumentItem::createCoordSystem() const
new
FixedBinAxis
(
"alpha"
,
m_alphaAxis
.
nbins
(),
m_alphaAxis
.
min
()
*
Units
::
deg
,
m_alphaAxis
.
max
()
*
Units
::
deg
);
const
auto
*
det
=
dynamic_cast
<
const
SphericalDetector
*>
(
detectorItem
()
->
createDetector
().
get
());
const
auto
*
det
=
dynamic_cast
<
const
SphericalDetector
*>
(
detectorItem
()
->
createDetector
().
get
());
ASSERT
(
det
);
return
det
->
offspecCoords
(
alphaAxis
);
}
Loading