Opened 5 years ago
Closed 5 years ago
#1384 closed Bug (fixed)
Track resolution in delphes_card_CMS.tcl
Reported by: | jerdmann | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | Delphes code | Version: | Delphes 3 |
Keywords: | Cc: |
Description
Dear Delphes experts,
I think I came across an error in the pT resolution for charged tracks in delphes_card_CMS. It quotes the following paper (1405.6569) and then implements this resolution function:
set ResolutionFormula { (abs(eta) <= 0.5) * (pt > 0.1) * sqrt(0.062 + pt2*1.3e-32) +
(abs(eta) > 0.5 && abs(eta) <= 1.5) * (pt > 0.1) * sqrt(0.102 + pt2*1.7e-32) +
(abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1) * sqrt(0.252 + pt2*3.1e-32)}
However, this resolution is much larger than what is shown in the quoted paper for charged pions (Fig. 16, bottom plot). I have implemented the following function by looking at Fig. 16:
set ResolutionFormula { (abs(eta) <= 0.5) * (pt > 0.1) * sqrt(0.012 + pt2*1.7e-42) +
(abs(eta) > 0.5 && abs(eta) <= 1.5) * (pt > 0.1) * sqrt(0.0152 + pt2*2.6e-42) +
(abs(eta) > 1.5 && abs(eta) <= 2.5) * (pt > 0.1) * sqrt(0.022 + pt2*6.7e-42)}
Using this function, two-track resonances come out with a much more realistic mass resolution than before.
Please let me know if this is indeed an error in the card or whether I have misunderstood something.
Cheers and thanks,
Johannes
P.S.: I'm using Delphes 3.4.1.
Change History (3)
comment:1 by , 5 years ago
comment:2 by , 5 years ago
Dear Michele,
sorry for only answering now that this is indeed helpful information for me.
Thanks!
Johannes
comment:3 by , 5 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Hi,
thanks for pointing this out and sorry for the late reply.
Indeed the resolution is worse than what is quoted. This was deliberate, as we manually worsened the resolution in order to have the right performance for particle-flow jet resolution. Indeed for resonances looking at single pions track the effect is bad as you noticed.
But we can't do much about it. You are free to change the resolution for your use-case.
Michele