Changeset dd263e4 in git for modules/TreeWriter.cc
- Timestamp:
- Jan 19, 2022, 12:08:01 PM (3 years ago)
- Branches:
- master
- Children:
- 2c8865f, 56fb0be, 5c03893
- Parents:
- 0c0c9af (diff), 78ce8d1 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Michele Selvaggi <michele.selvaggi@…> (01/19/22 12:08:01)
- git-committer:
- GitHub <noreply@…> (01/19/22 12:08:01)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/TreeWriter.cc
r0c0c9af rdd263e4 369 369 370 370 // add some offdiagonal covariance matrix elements 371 entry->ErrorD0Phi = candidate->TrackCovariance(0,1) ;371 entry->ErrorD0Phi = candidate->TrackCovariance(0,1)*1.e3; 372 372 entry->ErrorD0C = candidate->TrackCovariance(0,2); 373 entry->ErrorD0DZ = candidate->TrackCovariance(0,3) ;374 entry->ErrorD0CtgTheta = candidate->TrackCovariance(0,4) ;375 entry->ErrorPhiC = candidate->TrackCovariance(1,2) ;376 entry->ErrorPhiDZ = candidate->TrackCovariance(1,3) ;373 entry->ErrorD0DZ = candidate->TrackCovariance(0,3)*1.e6; 374 entry->ErrorD0CtgTheta = candidate->TrackCovariance(0,4)*1.e3; 375 entry->ErrorPhiC = candidate->TrackCovariance(1,2)*1.e-3; 376 entry->ErrorPhiDZ = candidate->TrackCovariance(1,3)*1.e3; 377 377 entry->ErrorPhiCtgTheta = candidate->TrackCovariance(1,4); 378 378 entry->ErrorCDZ = candidate->TrackCovariance(2,3); 379 entry->ErrorCCtgTheta = candidate->TrackCovariance(2,4) ;380 entry->ErrorDZCtgTheta = candidate->TrackCovariance(3,4) ;379 entry->ErrorCCtgTheta = candidate->TrackCovariance(2,4)*1.e-3; 380 entry->ErrorDZCtgTheta = candidate->TrackCovariance(3,4)*1.e3; 381 381 382 382 entry->Xd = candidate->Xd;
Note:
See TracChangeset
for help on using the changeset viewer.