Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
AUSA
AUSAlib
Commits
fb0c0236
Commit
fb0c0236
authored
Feb 18, 2016
by
Munken
Browse files
Thinking about how to write multiplicities
parent
33d6a4c9
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/ausa/output/CopyableOutput.h
View file @
fb0c0236
...
...
@@ -38,7 +38,7 @@ namespace AUSA {
*/
explicit
CopyableOutput
(
int
maxMultiplicity
,
std
::
shared_ptr
<
Detector
>
detector
=
std
::
shared_ptr
<
Detector
>
{})
:
_detector
(
detector
),
max
(
maxMultiplicity
)
{
_strips
=
std
::
shared_ptr
<
S
>
(
new
S
[
max
]);
_strips
=
std
::
shared_ptr
<
S
>
(
new
S
[
max
]
,
std
::
default_delete
<
S
[]
>
()
);
_adc
=
std
::
shared_ptr
<
A
>
(
new
A
[
max
]);
_time
=
std
::
shared_ptr
<
T
>
(
new
T
[
max
]);
_multiplicity
=
std
::
shared_ptr
<
M
>
(
new
M
[
1
]);
...
...
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