Opened 6 years ago
Last modified 6 years ago
#1336 new Bug
converter root2lhco
Reported by: | Kayoung_Ban | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | Delphes code | Version: | Delphes 3 |
Keywords: | Tau, prong | Cc: |
Description
Hi,
I found the minor error of root2lhco converter. (converter/root2lhco.cpp)
In LHCOWriter::AnalyseTauJets [line 337~372], Tau_h N-prongs(N>1) are stacked only 1-prong.
That mean when I used root2lhco and checked the Tau.Ntrk, I couldn't checking N-prongs.
I think it doesn't upgrade when Delphes version up v1>v3.
=============
counter = 1; -> counter = 0;
fItTrack->Reset();
while((track = static_cast<Track*>(fItTrack->Next())))
{
if(element->P4().DeltaR(track->P4()) < 0.2) ++counter;
}
=============
Could you check this part?
Best regards
Note:
See TracTickets
for help on using tickets.
Here is a link to the commit that forced counter to 1:
https://github.com/delphes/delphes/commit/c62695ec970dfef0ea8d0c497ebe0708aace1b10
So, it's not a bug.