Fork me on GitHub

Changeset 7c7fe5e in git for modules/PdgCodeFilter.cc


Ignore:
Timestamp:
Jan 22, 2019, 4:21:08 PM (6 years ago)
Author:
GitHub <noreply@…>
Branches:
ImprovedOutputFile, Timing, llp, master
Children:
771843a
Parents:
d20cefb (diff), 7a86a5c (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
git-author:
Pavel Demin <pavel-demin@…> (01/22/19 16:21:08)
git-committer:
GitHub <noreply@…> (01/22/19 16:21:08)
Message:

Merge pull request #65 from chekanov/master

Propogate pileup information from HepSim

File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/PdgCodeFilter.cc

    rd20cefb r7c7fe5e  
    7676  fInvert = GetBool("Invert", false);
    7777
     78  // no pileup
     79  fRequireNotPileup = GetBool("RequireNotPileup", false);
     80
    7881  fRequireStatus = GetBool("RequireStatus", false);
    7982  fStatus = GetInt("Status", 1);
     
    127130    if(fRequireStatus && (candidate->Status != fStatus)) continue;
    128131    if(fRequireCharge && (candidate->Charge != fCharge)) continue;
     132    if(fRequireNotPileup && (candidate->IsPU   >0     )) continue;
    129133
    130134    pass = kTRUE;
Note: See TracChangeset for help on using the changeset viewer.