Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion PWGJE/Core/FastJetUtilities.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ void FastJetUtilities::setFastJetUserInfo(std::vector<fastjet::PseudoJet>& const
{
fastjet_user_info* user_info = new fastjet_user_info(status, index); // FIXME: can setting this as a pointer be avoided?
constituents.back().set_user_info(user_info);
if (index != -99999999) { // FIXME: needed for constituent subtraction as user_info is not propagated, but need to be quite careful to make sure indices dont overlap between tracks, clusters and HF candidates. Current solution might not be optimal
if (index != -99999999) { // FIXME: needed for constituent subtraction as user_info is not propagated, but need to be quite careful to make sure indices dont overlap between tracks, clusters and HF candidates. Current solution might not be optimal
int i = index;
if (status == static_cast<int>(JetConstituentStatus::track)) {
i = i + 1;
Expand Down