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
Commits
21327ed9
Commit
21327ed9
authored
2 years ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
rm last use of GisasDirection::zReflected
parent
864f2724
No related branches found
No related tags found
1 merge request
!1245
simplify handling of beam direction; rm special case PERPENDICULAR_TO_REFLECTED_BEAM_DPOS
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Base/Vector/GisasDirection.h
+0
-2
0 additions, 2 deletions
Base/Vector/GisasDirection.h
GUI/Model/Device/InstrumentItems.cpp
+3
-3
3 additions, 3 deletions
GUI/Model/Device/InstrumentItems.cpp
with
3 additions
and
5 deletions
Base/Vector/GisasDirection.h
+
0
−
2
View file @
21327ed9
...
...
@@ -39,8 +39,6 @@ public:
//! Returns Cartesian 3D vector, where alpha, phi parameterize declination away from (r,0,0)
R3
declinationVector
(
double
r
)
const
;
GisasDirection
zReflected
()
const
{
return
{
-
m_alpha
,
m_phi
};
}
private
:
double
m_alpha
;
//!< declination in +z direction
double
m_phi
;
//!< declination in -y direction
...
...
This diff is collapsed.
Click to expand it.
GUI/Model/Device/InstrumentItems.cpp
+
3
−
3
View file @
21327ed9
...
...
@@ -505,7 +505,7 @@ std::shared_ptr<Instrument> Instrument2DItem::createInstrument() const
{
auto
beam
=
beamItem
()
->
createBeam
();
auto
detector
=
detectorItem
()
->
createDetector
();
detector
->
setDetectorNormal
(
beam
->
direction
().
zReflected
().
declinationVector
(
1
));
detector
->
setDetectorNormal
(
beam
->
ki
(
));
return
std
::
make_shared
<
Instrument
>
(
beam
,
*
detector
);
}
...
...
@@ -516,7 +516,7 @@ ScatteringSimulation* Instrument2DItem::createScatteringSimulation(const MultiLa
beam
->
setPolarization
(
m_polarization
);
auto
detector
=
detectorItem
()
->
createDetector
();
detector
->
setAnalyzer
(
m_analyzerDirection
,
m_analyzerEfficiency
,
m_analyzerTotalTransmission
);
detector
->
setDetectorNormal
(
beam
->
direction
().
zReflected
().
declinationVector
(
1
));
detector
->
setDetectorNormal
(
beam
->
ki
(
));
auto
*
result
=
new
ScatteringSimulation
(
*
beam
,
sample
,
*
detector
);
return
result
;
...
...
@@ -528,7 +528,7 @@ OffspecSimulation* Instrument2DItem::createOffspecSimulation(const MultiLayer& s
beam
->
setPolarization
(
m_polarization
);
auto
detector
=
detectorItem
()
->
createDetector
();
detector
->
setAnalyzer
(
m_analyzerDirection
,
m_analyzerEfficiency
,
m_analyzerTotalTransmission
);
detector
->
setDetectorNormal
(
beam
->
direction
().
zReflected
().
declinationVector
(
1
));
detector
->
setDetectorNormal
(
beam
->
ki
(
));
auto
*
result
=
new
OffspecSimulation
(
*
beam
,
sample
,
*
detector
);
return
result
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment