The reconstructed kinematics when using VeloSP or Retina clusters match each other very well
but quite large fraction of reconstructed tracks can not be matched when using Retina Clusters
2023 MC sample used: root://x509up_u128460@eoslhcb.cern.ch//eos/lhcb/grid/prod/lhcb/MC/Dev/DIGI/00194513/0000/00194513_00000005_1.digi
Also checked with 2022 minbias MC: root://eoslhcb.cern.ch//eos/lhcb/grid/prod/lhcb/MC/Upgrade/XDIGI/00171960/0000/00171960_00006077_1.xdigi
The PrTrackRecoDumper algorithm was used to dump the reconstructed info,
with this option: /afs/cern.ch/user/p/peilian/eoslhcb/public/forGiovanni/hlt2_trackrecodumper.py
To add here what I discussed privately with @peilian on mattermost as well, I am confused how this does not cause failures in our nightly reconstruction performance tests, since failures in MC matching should lead to large increases in ghost rates.
That test is as far as I can tell currently disabled in the nightlies although I agree the reference is very suspicious. Given how many tests there are probably easiest if @decianm tells us which one is testing the production sequence.
introduced the 0% efficiency. This ref update was to update to the "newer" samples with more data-like decoding versions Moore!1703 (merged) (and related MRs).
However, this does not (necessarily) explain what @peilian sees, as the samples were produced independently, so I think we need @gbassi input.
Note that, after fixing, we probably have to reproduce the HLT2-processed MC samples for 2022, and it has to be included for the 2023 production as well.
Some insights: The file default_input_and_conds_hlt2.py which is used by many tests (e.g. hlt2_light_reco_pr_kf_without_UT_with_mcchecking.qmt) includes:
# Use velo retina decoding:make_VeloClusterTrackingSIMD.global_bind( algorithm=VeloRetinaClusterTrackingSIMD)make_velo_full_clusters.global_bind( make_full_cluster=VPRetinaFullClusterDecoder)
i.e. all tests using these inputs will use Retina clusters, even if they are not labelled so.
Running a comparison with and without these lines results in:
Thanks @decianm for the point. This doesn't matter for the information I used in the plots as this is only used to get the position of hits but we don't use them for anything else.
In any case, I just changed to make_RetinaClusters accordingly, and no changes seen in the plots I showed before as expected.
Right, thanks @decianm and @ahennequ for the hint. I think this fixes the issue. I think it is better to put the bind in the option file instead of input data file.
I would opt for making Retina clusters the default in the reconstruction, and accordingly in all the options, as it's clearly not trivial to get the options correct. If there are some tests still using old MC samples where Retina clusters were not available, then only there use binds to use VeloSP in the options (and replace them asap with newer samples)
All as in MC productions for which HLT2 was run centrally, digi files should be ok.
Given we will have the HLT2 reprocessing of 2022 data and will need to run on MC with the respective Moore version as well, I'd fix this issue directly for those productions. But I agree we should not forget about it
Should we introduce a default_vp_light_clusters( vp_light_cluster_creator=... ) function that is overwritten by the bind in case a non-default configuration is used? There are more places where we work with VPLightClusters, which typically one all changes together when switching between SP and Retina clusters.
(note that this does not remove the flexibility to use specific binds at all)
(and actually a similar functionality is then also introduced for vp_full_clusters)
Which exact bind is the one that solved the MC matching issue? The one for make_links_lhcbids_mcparticles_tracking_system()? I'm a bit puzzled this is needed since for the Allen velo tracking for example it is not the case (see allen_gaudi_velo.py
Another difference I noted to the Allen velo tracking checking scripts is the Retina decoding. Above you pointed to
is used in Allen. Is this an overkill, since it does a CPU emulation of the Retina clustering rather than just decoding it @gbassi ?
What is your idea for a default_vp_light_clusters( vp_light_cluster_creator=... ) function @ldufour ? To set all the required binds? Then it would probably make sense to have one for retina clusters (the default) and one for super pixels that can be used as alternative?
Hi @dovombru, for newer MC samples (Retina decoding version 4) VPRetinaFullClustering is definitely an overkill because it produces full clusters out of SuperPixels instead of directly decoding the Retina cluster raw bank into full clusters. However VPRetinaFullClustering is still needed for older samples (Retina decoding versions 2 and 3), where it is not possible to decode cluster words into full clusters, so full clusters need to be recomputed from SuperPixels.
Performing only one of the two bind, tracks reconstructed using a kind of clusters are matched to MC-tracks through a different kind of clusters. Technically it is not a bug of the code, but a wrong setup of the custom sequence.
As it is easy to forget to perform the second bind, I opened the MR Moore!2786 (merged) to introduce a new function that with a single bind set the two algorithms.
I do not know if we want to close this issue, or if we want to wait the MR to be merged.
please note Moore!2166 (merged) which cleans up the need for some of these binds... so please first merge Moore!2166 (merged) (and dependent MR) and then see what is still needed.
@rmatev can you point out which options are to be used for running on MC productions?
@flazzari since you prepared the simplification in Moore!2786 (merged) would you be able to help to propagate to 2023-hlt2pp-patches and test the MC options to make sure the matching is properly using the Retina clusters?
I missed something: this is not a code issue, but a misconfiguration of a private option file.
At time, all the option files in Moore was correct.
I deployed a simplification that require a single bind for using RetinaClusters, but it's still possible to use the old way with two binds.
I can help to propagate the simplification, but basically it consist to apply the commit to 2023-hlt2pp-patches
sorry, @flazzari I was probably not clear. This last discussion is in the context of providing options to run HLT2 centrally on MC. We need to make sure those options use the proper configuration, it might be the case already. On top of this, we would like to have a test to ensure this doesn't break with further developments.
@cmarinbe See Moore!3154 (merged) . However is not well clear to me if this function calls the MC-truth matching, and therefore if the second bind is required.