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
2c507960
Commit
2c507960
authored
4 years ago
by
Pospelov, Gennady
Browse files
Options
Downloads
Patches
Plain Diff
Fix missed export for Windows
parent
ceee37a8
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Core/Binning/IPixel.h
+2
-1
2 additions, 1 deletion
Core/Binning/IPixel.h
Core/Instrument/RectangularDetector.h
+1
-1
1 addition, 1 deletion
Core/Instrument/RectangularDetector.h
Core/Instrument/SphericalDetector.h
+1
-1
1 addition, 1 deletion
Core/Instrument/SphericalDetector.h
with
4 additions
and
3 deletions
Core/Binning/IPixel.h
+
2
−
1
View file @
2c507960
...
...
@@ -15,12 +15,13 @@
#ifndef IPIXEL_H
#define IPIXEL_H
#include
"WinDllMacros.h"
#include
"Vectors3D.h"
//! Interface for a function that maps [0,1]x[0,1] to the kvectors in a pixel.
//! @ingroup simulation
class
IPixel
class
BA_CORE_API_
IPixel
{
public:
virtual
~
IPixel
()
{}
...
...
This diff is collapsed.
Click to expand it.
Core/Instrument/RectangularDetector.h
+
1
−
1
View file @
2c507960
...
...
@@ -107,7 +107,7 @@ private:
kvector_t
m_v_unit
;
};
class
RectangularPixel
:
public
IPixel
class
BA_CORE_API_
RectangularPixel
:
public
IPixel
{
public:
RectangularPixel
(
kvector_t
corner_pos
,
kvector_t
width
,
kvector_t
height
);
...
...
This diff is collapsed.
Click to expand it.
Core/Instrument/SphericalDetector.h
+
1
−
1
View file @
2c507960
...
...
@@ -61,7 +61,7 @@ protected:
size_t
getIndexOfSpecular
(
const
Beam
&
beam
)
const
override
;
};
class
SphericalPixel
:
public
IPixel
class
BA_CORE_API_
SphericalPixel
:
public
IPixel
{
public:
SphericalPixel
(
const
Bin1D
&
alpha_bin
,
const
Bin1D
&
phi_bin
);
...
...
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