- Timestamp:
- Feb 24, 2022, 4:15:47 PM (3 years ago)
- Branches:
- master
- Children:
- 2a2f310
- Parents:
- 56fb0be
- Location:
- modules
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
modules/TrackCovariance.cc
r56fb0be r3a105e5 121 121 const TLorentzVector &candidateMomentum = particle->Momentum; 122 122 123 123 124 Bool_t inside = TrkUtil::IsInside(candidatePosition.Vect(), Rin, ZinNeg, ZinPos); // Check if in inner box 124 125 Bool_t Accept = kTRUE; … … 130 131 131 132 ObsTrk track(candidatePosition.Vect(), candidateMomentum.Vect(), candidate->Charge, fCovariance, fGeometry); 133 132 134 133 135 mother = candidate; … … 150 152 candidate->Yd = track.GetObsX().Y()*1e03; 151 153 candidate->Zd = track.GetObsX().Z()*1e03; 154 155 candidate->XFirstHit = track.GetFirstHit().X()*1e03; 156 candidate->YFirstHit = track.GetFirstHit().Y()*1e03; 157 candidate->ZFirstHit = track.GetFirstHit().Z()*1e03; 152 158 153 159 candidate->D0 = track.GetObsPar()[0]*1e03; -
modules/TreeWriter.cc
r56fb0be r3a105e5 384 384 entry->Zd = candidate->Zd; 385 385 386 entry->XFirstHit = candidate->XFirstHit; 387 entry->YFirstHit = candidate->YFirstHit; 388 entry->ZFirstHit = candidate->ZFirstHit; 389 386 390 const TLorentzVector &momentum = candidate->Momentum; 387 391 … … 544 548 entry->Zd = candidate->Zd; 545 549 550 entry->XFirstHit = candidate->XFirstHit; 551 entry->YFirstHit = candidate->YFirstHit; 552 entry->ZFirstHit = candidate->ZFirstHit; 553 546 554 const TLorentzVector &momentum = candidate->Momentum; 547 555
Note:
See TracChangeset
for help on using the changeset viewer.