-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
initialize diagonals plus remove unneeded header #145
base: master
Are you sure you want to change the base?
Conversation
@@ -16,6 +16,9 @@ DecayTreeVectorIntegral::DecayTreeVectorIntegral(const DecayTreeVector& dtv) | |||
Diagonals_(DecayTrees_.size()), | |||
OffDiagonals_(DecayTrees_.size() - 1) | |||
{ | |||
for (size_t i = 0; i < Diagonals_.size(); ++i) | |||
Diagonals_[i].value() = 1.; | |||
|
|||
for (size_t i = 0; i < OffDiagonals_.size(); ++i) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
off-diagonals should also be initialized, and should be equal to the product of the number of symmetrizations in the two DecayTrees
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How can we get the symmetrization indices from a DecayTree?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good question.
@@ -16,6 +16,9 @@ DecayTreeVectorIntegral::DecayTreeVectorIntegral(const DecayTreeVector& dtv) | |||
Diagonals_(DecayTrees_.size()), | |||
OffDiagonals_(DecayTrees_.size() - 1) | |||
{ | |||
for (size_t i = 0; i < Diagonals_.size(); ++i) | |||
Diagonals_[i].value() = 1.; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The value should be equal to the square of the number of symmetrizations for that DecayTree
.
No description provided.