Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LEFEBVREJP email
radix
Commits
877efeee
Commit
877efeee
authored
May 27, 2021
by
LEFEBVREJP email
Browse files
Added assignment operator to EmitDB.
parent
06127c50
Pipeline
#147698
passed with stages
in 18 minutes and 26 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
radixio/emitdb.cc
View file @
877efeee
...
...
@@ -261,4 +261,10 @@ std::vector<std::vector<float>> EmitDb::betas(const int zaid)
return
paired
;
}
void
EmitDb
::
operator
=
(
const
EmitDb
&
orig
)
{
mIsotope
=
orig
.
mIsotope
;
mIsotopeTitle
=
orig
.
mIsotopeTitle
;
}
}
// namespace radix
radixio/emitdb.hh
View file @
877efeee
...
...
@@ -88,6 +88,7 @@ class RADIX_PUBLIC EmitDb
std
::
vector
<
std
::
vector
<
float
>>
photons
(
const
int
zaid
);
const
std
::
vector
<
std
::
vector
<
float
>>
betas
(
const
int
zaid
)
const
;
std
::
vector
<
std
::
vector
<
float
>>
betas
(
const
int
zaid
);
void
operator
=
(
const
EmitDb
&
orig
);
};
// class EmitDb
}
// namespace radix
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment