Skip to content
Snippets Groups Projects

Adding a new D->ksksh line

Open Gediminas Sarpis requested to merge gedas_d2ksksh_line into charm_2025_reopt

Added new lines for D+ -> ksksh with LLLL, LLDD, DDDD variants

BW 0.000186 Gb/s

Efficiencies when run on 255965 events (max available) using the hlt2_snippet.py

LAZY_AND: Hlt2Charm_DpDspToKsKsKp_DDDDDecisionWithOutput #=255965 Sum=1 Eff=|(0.0003906784 +- 0.000390678)%|
LAZY_AND: Hlt2Charm_DpDspToKsKsKp_LLDDDecisionWithOutput #=255965 Sum=1 Eff=|(0.0003906784 +- 0.000390678)%|
LAZY_AND: Hlt2Charm_DpDspToKsKsKp_LLLLDecisionWithOutput #=255965 Sum=0 Eff=|( 0.000000 +- 0.00000 )%|
LAZY_AND: Hlt2Charm_DpDspToKsKsPip_DDDDDecisionWithOutput #=255965 Sum=2 Eff=|(0.0007813568 +- 0.000552501)%|
LAZY_AND: Hlt2Charm_DpDspToKsKsPip_LLDDDecisionWithOutput #=255965 Sum=1 Eff=|(0.0003906784 +- 0.000390678)%|
LAZY_AND: Hlt2Charm_DpDspToKsKsPip_LLLLDecisionWithOutput #=255965 Sum=0 Eff=|( 0.000000 +- 0.00000 )%|
Edited by Gediminas Sarpis

Merge request reports

Merge request pipeline #11135919 passed with warnings

Merge request pipeline passed with warnings for 2f7bf740

Ready to merge by members who can write to the target branch.
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
136 F.CHI2DOF < vchi2pdof_max,
137 F.BPVVDZ(pvs) > bpvvdz_min,
138 F.BPVFDCHI2(pvs) > bpvfdchi2_min,
139 F.MINIPCHI2CUT(IPChi2Cut=mipchi2_min, Vertices=pvs),
140 # F.BPVLTIME(pvs) > bpvltime_min #<-- not converging at all
141 )
142 return ParticleCombiner(
143 [pions1, pions2],
144 name=name,
145 DecayDescriptor="KS0 -> pi+ pi-",
146 CombinationCut=comb_cut,
147 CompositeCut=vertex_cut,
148 )
149
150
151 def make_ks_dd(
  • 103 ## strange combiners ##
    104 #######################
    105 def make_ks_ll(
    106 pions1,
    107 pions2,
    108 pvs,
    109 name="Charm_DToKsH_KsLL_{hash}",
    110 comb_m_min=445 * MeV,
    111 comb_m_max=550 * MeV,
    112 m_min=460 * MeV,
    113 m_max=535 * MeV,
    114 comb_pt_min=300 * MeV,
    115 pt_min=350 * MeV,
    116 comb_p_min=3.5 * GeV,
    117 p_min=4 * GeV,
    118 doca_max=1 * mm,
  • 106 pions1,
    107 pions2,
    108 pvs,
    109 name="Charm_DToKsH_KsLL_{hash}",
    110 comb_m_min=445 * MeV,
    111 comb_m_max=550 * MeV,
    112 m_min=460 * MeV,
    113 m_max=535 * MeV,
    114 comb_pt_min=300 * MeV,
    115 pt_min=350 * MeV,
    116 comb_p_min=3.5 * GeV,
    117 p_min=4 * GeV,
    118 doca_max=1 * mm,
    119 vchi2pdof_max=7.0,
    120 bpvvdz_min=10 * mm,
    121 bpvfdchi2_min=3.0,
  • 150
    151 def make_ks_dd(
    152 pions1,
    153 pions2,
    154 pvs,
    155 name="Charm_DToKsH_KsDD_{hash}",
    156 comb_m_min=417 * MeV,
    157 comb_m_max=577 * MeV,
    158 m_min=437 * MeV,
    159 m_max=557 * MeV,
    160 comb_pt_min=400 * MeV,
    161 pt_min=450 * MeV,
    162 sum_pt_min=500 * MeV,
    163 comb_p_min=4.5 * GeV,
    164 p_min=5 * GeV,
    165 doca_max=2 * mm,
  • 196
    197 ########################
    198 ## D mesons combiners ##
    199 ########################
    200 def combine_d_ks_ks_h(
    201 ks0,
    202 ks1,
    203 particle,
    204 pvs,
    205 decay_descriptor,
    206 name="Charm_DToKsKsH_DToKsKsHCombiner_{hash}",
    207 comb_m_min=1779 * MeV,
    208 comb_m_max=2059 * MeV,
    209 m_min=1789 * MeV, # lower range for D+
    210 m_max=2049 * MeV, # upper range for Ds+
    211 comb_pt_min=1.5 * GeV,
  • 201 ks0,
    202 ks1,
    203 particle,
    204 pvs,
    205 decay_descriptor,
    206 name="Charm_DToKsKsH_DToKsKsHCombiner_{hash}",
    207 comb_m_min=1779 * MeV,
    208 comb_m_max=2059 * MeV,
    209 m_min=1789 * MeV, # lower range for D+
    210 m_max=2049 * MeV, # upper range for Ds+
    211 comb_pt_min=1.5 * GeV,
    212 pt_min=2.0 * GeV,
    213 sum_pt_min=1.8 * GeV,
    214 comb_p_min=15 * GeV,
    215 p_min=16 * GeV,
    216 doca_max=100 * um,
  • Tommaso Pajero
  • 210 m_max=2049 * MeV, # upper range for Ds+
    211 comb_pt_min=1.5 * GeV,
    212 pt_min=2.0 * GeV,
    213 sum_pt_min=1.8 * GeV,
    214 comb_p_min=15 * GeV,
    215 p_min=16 * GeV,
    216 doca_max=100 * um,
    217 vchi2pdof_max=5.0,
    218 # bpvltime_min=0.25 * picosecond,
    219 bpvvdz_min=0.5 * mm,
    220 bpvfdchi2_min=25.0,
    221 bpfdrho_max=5 * mm,
    222 # bpvipchi2_max=999.,
    223 bpvdira_min=0.995,
    224 dz1_min=5.0 * mm,
    225 ks_fdrho_min=1 * mm,
  • Tommaso Pajero requested review from @yingl

    requested review from @yingl

  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Loading
  • Please register or sign in to reply
    Loading