Skip to content

Commit 4b948ad

Browse files
Add trkpid to documentation
1 parent b8b2b78 commit 4b948ad

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

doc/branches.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ If a Kalman fit fails or there are multiple downstream tracks to fit, the number
3535
| trkcalohit | Vector branch | the calorimeter cluster assigned to a track| [see TrkCaloHitInfo.hh](../inc/TrkCaloHitInfo.hh)
3636
| trkcalohitmc | Vector branch | MC-truth infromation for calorimeter clusters| [see CaloClusterInfoMC.hh](../inc/CaloClusterInfoMC.hh)
3737
| trkqual | Vector branch | the output of a multi-variate analysis (MVA)| [see MVAResultInfo.hh](../inc/MVAResultInfo.hh)
38+
| trkpid | Vector branch | the output of a multi-variate analysis (MVA)| [see MVAResultInfo.hh](../inc/MVAResultInfo.hh)
3839
## Track segments Branches
3940

4041
These branches contain 4 elements per event corresponding to different Kalman fit hypotheses (see Track branches).

helper/ntuplehelper.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
class nthelper:
44

55
single_object_branches = ['evtinfo', 'evtinfomc', 'hitcount', 'tcnt', 'crvsummary', 'crvsummarymc']
6-
vector_object_branches = ['trk', 'trkmc', 'trkcalohit', 'trkcalohitmc', 'caloclusters', 'calohits', 'calorecodigis', 'calodigis', 'crvcoincs', 'crvcoincsmc', 'crvcoincsmcplane', 'trkqual']
6+
vector_object_branches = ['trk', 'trkmc', 'trkcalohit', 'trkcalohitmc', 'caloclusters', 'calohits', 'calorecodigis', 'calodigis', 'crvcoincs', 'crvcoincsmc', 'crvcoincsmcplane', 'trkqual', 'trkpid']
77
vector_vector_object_branches = ['trksegs', 'trksegpars_lh', 'trksegpars_ch', 'trksegpars_kl', 'trkmcsim', 'trkhits', 'trkhitsmc', 'trkmats', 'trkhitcalibs', 'trkmcsci', 'trkmcssi', 'trksegsmc' ]
88

99
evt_branches = ['evtinfo','evtinfomc','hitcount','tcnt']
10-
trk_branches = ['trk', 'trkmc', 'trkcalohit', 'trkcalohitmc', 'trkqual']
10+
trk_branches = ['trk', 'trkmc', 'trkcalohit', 'trkcalohitmc', 'trkqual', 'trkpid']
1111
trksegs_branches = ['trksegs', 'trksegpars_lh', 'trksegpars_ch', 'trksegpars_kl', 'trksegsmc']
1212
straw_branches = ['trkhits', 'trkmats', 'trkhitsmc', 'trkhitcalibs']
1313
mc_branches = ['trkmcsim']
@@ -56,6 +56,7 @@ class nthelper:
5656
"crvcoincsmc" : "CrvHitInfoMC",
5757
"crvcoincsmcplane" : "CrvPlaneInfoMC",
5858
"trkqual" : "MVAResultInfo",
59+
"trkpid" : "MVAResultInfo",
5960
"helices" : "HelixInfo",
6061
"trksegsmc" : "SurfaceStepInfo"
6162
}

0 commit comments

Comments
 (0)