Fork me on GitHub

Opened 11 years ago

Closed 11 years ago

#179 closed Enhancement (fixed)

truth info on signal particles

Reported by: Sergei Chekanov Owned by:
Priority: minor Milestone:
Component: Delphes code Version: Delphes 3
Keywords: truth Cc: chekanov@…

Description

Hello,

It would be good to fill in the most important signal truth particles (t,b,bosons,exotic). I would modify StatusPidFilter.cc as this:

Write all electrons, muons, taus and status == 3;

bool take=false;

electrons, muons, taus and status == 3;

if(pdgCode == 11
pdgCode == 13 pdgCode == 15) take=true;

if (status == 3) take=true;

take quarks

if(pdgCode == 5
pdgCode == 6) take=true;

take rest
if (pdgCode>22 && pdgCode< 42) take=true;

if (take==false) continue;

Change History (3)

comment:1 by Pavel Demin, 11 years ago

Hi Sergei,

Thanks for the suggestion.

I've also added neutrinos and LeptoQuark.

The updated code is in trunk now [1117].

Cheers,

Pavel

comment:2 by Pavel Demin, 11 years ago

Updated StatusPidFilter is in Delphes 3.0.9 now.

comment:3 by Pavel Demin, 11 years ago

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.