Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:18:13

0001 #include "SvtxAlignmentState.h"
0002 
0003 namespace
0004 {
0005   SvtxAlignmentState::GlobalMatrix globalMatrix = SvtxAlignmentState::GlobalMatrix::Zero();
0006   SvtxAlignmentState::LocalMatrix localMatrix = SvtxAlignmentState::LocalMatrix::Zero();
0007   SvtxAlignmentState::ResidualVector residual = SvtxAlignmentState::ResidualVector::Zero();
0008 }  // namespace
0009 
0010 const SvtxAlignmentState::ResidualVector& SvtxAlignmentState::get_residual() const
0011 {
0012   return residual;
0013 }
0014 
0015 const SvtxAlignmentState::LocalMatrix& SvtxAlignmentState::get_local_derivative_matrix() const
0016 {
0017   return localMatrix;
0018 }
0019 
0020 const SvtxAlignmentState::GlobalMatrix& SvtxAlignmentState::get_global_derivative_matrix() const
0021 {
0022   return globalMatrix;
0023 }