Fork me on GitHub

Changeset f9aeea6 in git for modules/FastJetFinder.cc


Ignore:
Timestamp:
Jul 21, 2020, 5:18:37 PM (4 years ago)
Author:
GitHub <noreply@…>
Branches:
master
Children:
97ef971
Parents:
6f004b5
git-author:
jared-burleson <55971332+jared-burleson@…> (07/21/20 17:18:37)
git-committer:
GitHub <noreply@…> (07/21/20 17:18:37)
Message:

Update FastJetFinder.cc

Removed comments, fixed issue with Trimmed Jet Constituent Count

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/FastJetFinder.cc

    r6f004b5 rf9aeea6  
    489489      fastjet::Filter trimmer(fastjet::JetDefinition(fastjet::kt_algorithm, fRTrim), fastjet::SelectorPtFractionMin(fPtFracTrim));
    490490      fastjet::PseudoJet trimmed_jet = trimmer(*itOutputList);
    491 
    492       //trimmed_jet = join(trimmed_jet.constituents());
    493      
    494       //The previous line generates a trimmed_jet where each piece (subjet) has a single constituent only
    495       //This isn't necessarily correct, a subjet could have multiple constituents, according to defining trimming paper
    496       //Removing this line retains the trimmed_jet P4 but also allows subjets to be formed with multiple constituents
    497       //based on the R-parameter requirements, and is consistent with the ATLAS/ATHENA code from their github respository
    498       //Jared Burleson, Undergraduate Student at Southern Methodist University
    499491     
    500492      candidate->TrimmedP4[0].SetPtEtaPhiM(trimmed_jet.pt(), trimmed_jet.eta(), trimmed_jet.phi(), trimmed_jet.m());
Note: See TracChangeset for help on using the changeset viewer.