Recipes for reconstruction tests
This section contains recipes for testing new reconstruction modifications in the HLT Phase2 menu.
Enabling trimmed tracking
The recipe to test trimmed tracking works under CMSSW_14_1_0_pre5. First you need to setup a work area and merge the needed changes from the test branch.
1 2 3 4 5 6 | |
cmsDriver command:
1 2 3 4 5 6 7 8 9 10 | |
customizeHLTforTrimmedTracking instead of customizeHLTforTrimmedTrackingMixedPF above.
Physics meanings:
- Trimmed tracking is the selection of a subset of the pixel tracks, as seeds for full tracking (so tracks seeds). The selection requires the tracks to be close (dz<0.3cm) to the first N=100 vertices that have at least \sum p_T^2>0.3 \left(\sum p_T^2\right)_{leading vertex}
- When using mixed PF you expect to have a collection of mixedGeneralTracks along with the standard generalTracks which also contains pu pixel tracks (i.e. tracks rejected by the trimming step with dz>0.3cm from the primary vertices).
Or you can add in the end of your generated configuration file the customization:
1 2 3 4 5 | |
Note: This recipe currently isn't affecting EGamma/Muons.
Precision Timing
You can find a codi with instructions here. The recipe works in CMSSW_13_1_X, needs to be updated for the new CMSSW_14_1_X releases.
Running patatrack tracking with alpaka
To run base tracking (ie. hltPhase2PixelTracks as input to generalTracks) with patatrack via alpaka, after #45508 (14_2_0_pre2, under 14_2_0_pre1 cherry-pick b4e8c8652) add --procModifiers alpaka to the cmsDriver.py command. The modifiers will enable patatrack reconstruction of tight 4-hits pixel tracks via patatrack (also replacing the pixel cluster and rec. hits producers). Pixel tracks are then used to build the initialStep tracks. highPtTripletStep 3-hits tracks are still build as in the original algorithm (now starting from alpaka rec. hits) and added to the hltGeneralTracks collection together with the initialStep. Please note that the alpaka process modifier could enable other reconstruction via alpaka (eg. HGCAL).
To run alpaka tracking in 14_1_X cherry-pick b4e8c8652 (using at least 14_1_X_pre7).