IAP GITLAB

Skip to content
Snippets Groups Projects
Commit afe38569 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

added method to return shared_ptr to ModelProperties instead of reference

parent f7de1b85
No related branches found
No related tags found
No related merge requests found
...@@ -35,15 +35,15 @@ namespace corsika::environment { ...@@ -35,15 +35,15 @@ namespace corsika::environment {
public: public:
using value_type = double; using value_type = double;
using iterator_category = std::input_iterator_tag; using iterator_category = std::input_iterator_tag;
using pointer = double*; using pointer = value_type*;
using reference = double&; using reference = value_type&;
using difference_type = ptrdiff_t; using difference_type = ptrdiff_t;
WeightProviderIterator(AConstIterator a, BConstIterator b) WeightProviderIterator(AConstIterator a, BConstIterator b)
: fAIter(a) : fAIter(a)
, fBIter(b) {} , fBIter(b) {}
double operator*() const { return ((*fAIter) * (*fBIter)).magnitude(); } value_type operator*() const { return ((*fAIter) * (*fBIter)).magnitude(); }
WeightProviderIterator& operator++() { // prefix ++ WeightProviderIterator& operator++() { // prefix ++
++fAIter; ++fAIter;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment