Closed yipengsun closed 5 years ago
I'm trying to understand more for the IP chi^2 cuts. There's a SLAC presentation about how to compute it 1.
From that slide, it seems that high IP chi^2 implies track not coming from primary vertex. In the stripping line, we require minimum IP chi^2 > 45 for muon and kaon and pion, but not for D0.
D0 is reconstructed by kaon and muon, and we already required them to not come from PV, so the reconstructed D0 should not come from PV as well.
The missing selection found in #19 is similar to the missing ones found here. We haven't implemented the following selections listed in the analysis note lhcb-ana-2014-052-v2r1, most notably iso_BDT < 0.15
found by @bflaggs:
We'll start with this single selection:
(DstIDprod > 0 && IDprod > 0 && muPID > 0. && flagDstSB==0.) && isData > 0. && Y_M < 5280 && ((iso_BDT < 0.15) || (ishigher && keepme && isData==0.))
All selection and reconstruction info is from lhcb-ana-2014-052-v2r1.
Stripping
This corresponds to lines 253-260.
b2D0MuNuXB2DMuForTauMuLine
: fromStripping v21
The stripping-related code is in the
Define pre-filters
section of the code.High-level trigger (HLT)
This corresponds to lines 262-275.
Hlt2CharmHadD02HH_D02KPi
: cannot find selections defined in the line online. Available in note.Note that in source code this line is spelled as
Hlt2CharmHadD02HH_D02KPi
. This is probably there's another topological trigger that is not used in the analysis.The trigger-related code is in the
Define pre-filters
section.Level-0 (L0) trigger
This corresponds to lines 276-284. The requirements are:
L0Hadron TOS
on the D* candidateL0Global TIS
on the whole decayIn the code, the
sel_stripped_filtered
selection is related to L0 trigger. We required the following trigger condition:Reconstruction for
HistFactory
The above quote is implemented as:
Note that on line 300, there's an additional step of momentum scale correction. This is implemented in our code:
Our script is missing selections described in the note starting from line 305.
There's also a couple of
ROOT
scripts for the final selections. These scripts are:AddB.{C,h}
inRDRDstarRun1AnalysisPreservation/proc
.