Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
ducc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Simon Perkins
ducc
Commits
71d4e9ee
Commit
71d4e9ee
authored
May 07, 2020
by
Martin Reinecke
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes
parent
17ca0328
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
pyHealpix/pyHealpix.cc
pyHealpix/pyHealpix.cc
+3
-3
src/mr_util/infra/mav.h
src/mr_util/infra/mav.h
+1
-0
No files found.
pyHealpix/pyHealpix.cc
View file @
71d4e9ee
...
...
@@ -76,7 +76,7 @@ template<typename T1, typename T2, size_t nd1, size_t nd2, typename Func>
func
(
iin
,
iout
);
iin
.
inc
();
iout
.
inc
();
}
return
aout
;
return
move
(
aout
)
;
}
class
Pyhpbase
...
...
@@ -198,7 +198,7 @@ class Pyhpbase
oref
(
i
,
0
)
=
pixset
.
ivbegin
(
i
);
oref
(
i
,
1
)
=
pixset
.
ivend
(
i
);
}
return
res
;
return
move
(
res
)
;
}
};
...
...
@@ -240,7 +240,7 @@ py::array local_v_angle (const py::array &v1, const py::array &v2)
vec3
(
ii2
(
i
,
0
),
ii2
(
i
,
1
),
ii2
(
i
,
2
)));
ii1
.
inc
();
ii2
.
inc
();
iout
.
inc
();
}
return
angle
;
return
move
(
angle
)
;
}
const
char
*
pyHealpix_DS
=
R"""(
...
...
src/mr_util/infra/mav.h
View file @
71d4e9ee
...
...
@@ -26,6 +26,7 @@
#include <array>
#include <vector>
#include <memory>
#include <numeric>
#include "mr_util/infra/error_handling.h"
namespace
mr
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment