Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Pawian
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
PWA
Pawian
Commits
31c9233e
Commit
31c9233e
authored
11 years ago
by
Bertram Kopf
Browse files
Options
Downloads
Patches
Plain Diff
bug fix in LSOmegaTo3PiDecAmps; virtual functions XdecAmp and XdecPartAmp werde needed to modify
parent
ab8c1485
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
PwaUtils/LSOmegaTo3PiDecAmps.cc
+2
-2
2 additions, 2 deletions
PwaUtils/LSOmegaTo3PiDecAmps.cc
PwaUtils/LSOmegaTo3PiDecAmps.hh
+3
-3
3 additions, 3 deletions
PwaUtils/LSOmegaTo3PiDecAmps.hh
with
5 additions
and
5 deletions
PwaUtils/LSOmegaTo3PiDecAmps.cc
+
2
−
2
View file @
31c9233e
...
...
@@ -52,7 +52,7 @@ LSOmegaTo3PiDecAmps::~LSOmegaTo3PiDecAmps()
}
complex
<
double
>
LSOmegaTo3PiDecAmps
::
XdecPartAmp
(
Spin
lamX
,
Spin
lamDec
,
short
fixDaughterNr
,
EvtData
*
theData
,
Spin
lamFs
,
AbsXdecAmp
*
grandmaAmp
){
complex
<
double
>
LSOmegaTo3PiDecAmps
::
XdecPartAmp
(
Spin
&
lamX
,
Spin
&
lamDec
,
short
fixDaughterNr
,
EvtData
*
theData
,
Spin
&
lamFs
,
AbsXdecAmp
*
grandmaAmp
){
complex
<
double
>
result
(
0.
,
0.
);
std
::
vector
<
std
::
shared_ptr
<
const
LScomb
>
>::
iterator
it
;
...
...
@@ -73,7 +73,7 @@ complex<double> LSOmegaTo3PiDecAmps::XdecPartAmp(Spin lamX, Spin lamDec, short f
complex
<
double
>
LSOmegaTo3PiDecAmps
::
XdecAmp
(
Spin
lamX
,
EvtData
*
theData
,
Spin
lamFs
,
AbsXdecAmp
*
grandmaAmp
){
complex
<
double
>
LSOmegaTo3PiDecAmps
::
XdecAmp
(
Spin
&
lamX
,
EvtData
*
theData
,
Spin
&
lamFs
,
AbsXdecAmp
*
grandmaAmp
){
complex
<
double
>
result
(
0.
,
0.
);
...
...
This diff is collapsed.
Click to expand it.
PwaUtils/LSOmegaTo3PiDecAmps.hh
+
3
−
3
View file @
31c9233e
...
...
@@ -54,9 +54,9 @@ public:
// Getters:
virtual
complex
<
double
>
XdecAmp
(
Spin
lamX
,
EvtData
*
theData
,
Spin
lamFs
,
AbsXdecAmp
*
grandmaAmp
);
virtual
complex
<
double
>
XdecPartAmp
(
Spin
lamX
,
Spin
lamDec
,
short
fixDaughterNr
,
EvtData
*
theData
,
Spin
lamFs
,
AbsXdecAmp
*
grandmaAmp
);
virtual
complex
<
double
>
XdecAmp
(
Spin
&
lamX
,
EvtData
*
theData
,
Spin
&
lamFs
,
AbsXdecAmp
*
grandmaAmp
);
virtual
complex
<
double
>
XdecPartAmp
(
Spin
&
lamX
,
Spin
&
lamDec
,
short
fixDaughterNr
,
EvtData
*
theData
,
Spin
&
lamFs
,
AbsXdecAmp
*
grandmaAmp
);
virtual
void
print
(
std
::
ostream
&
os
)
const
;
...
...
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