Skip to content

Commit

Permalink
Same for 3D
Browse files Browse the repository at this point in the history
  • Loading branch information
JPorron committed Jan 9, 2025
1 parent 4bc776c commit 75de974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TRestTrack3DAnalysisProcess.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ TRestEvent* TRestTrack3DAnalysisProcess::ProcessEvent(TRestEvent* inputEvent) {
XYZ_Energy[t->GetTrackID()] = t->GetTrackEnergy();
XYZ_SigmaX[t->GetTrackID()] = t->GetHits()->GetSigmaX();
XYZ_SigmaY[t->GetTrackID()] = t->GetHits()->GetSigmaY();
XYZ_SigmaZ[t->GetTrackID()] = t->GetHits()->GetSigmaZ2();
XYZ_SigmaZ[t->GetTrackID()] = sqrt(t->GetHits()->GetSigmaZ2());
XYZ_GaussSigmaX[t->GetTrackID()] = t->GetHits()->GetGaussSigmaX();
XYZ_GaussSigmaY[t->GetTrackID()] = t->GetHits()->GetGaussSigmaY();
XYZ_GaussSigmaZ[t->GetTrackID()] = t->GetHits()->GetGaussSigmaZ();
Expand Down

0 comments on commit 75de974

Please sign in to comment.