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 , 11 years ago
comment:3 by , 11 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Hi Sergei,
Thanks for the suggestion.
I've also added neutrinos and LeptoQuark.
The updated code is in trunk now [1117].
Cheers,
Pavel