Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
SvtxAlignmentState_v1.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file SvtxAlignmentState_v1.cc
2 
4  : m_residual(ResidualVector::Zero())
5  , m_localDeriv(LocalMatrix::Zero())
6  , m_globalDeriv(GlobalMatrix::Zero())
7  , m_cluskey(UINT_MAX)
8 {
9 }
10 
11 void SvtxAlignmentState_v1::identify(std::ostream &os) const
12 {
13  os << "SvtxAlignmentState_v1 identify: " << std::endl;
14  os << "state for cluskey : " << m_cluskey << std::endl;
15  os << "residual : " << m_residual.transpose() << std::endl;
16  os << "local derivatives : " << std::endl
17  << m_localDeriv << std::endl;
18  os << "global derivatives : " << std::endl
19  << m_globalDeriv << std::endl;
20 }