#include <iostream>
#include "CLHEP/Matrix/Matrix.h"
#include "CLHEP/Matrix/SymMatrix.h"
Go to the source code of this file.
◆ operator<<()
std::ostream & operator<< |
( |
std::ostream & |
o, |
|
|
const zav & |
z |
|
) |
| |
|
inline |
Definition at line 136 of file TrackUtil/TrackUtil-00-00-12/TrackUtil/zav.h.
136 {
137 o << " zav::w=" << z._w << " sav=" << z._sav << " zav=" << z._zav
138 << " nc=" << z._nc << " chisq=" << z._chisq << " a=" << z._a
139 << " b=" << z._b << " c11=" << z._c11 << " c21=" << z._c21
140 << " c22=" << z._c22 << " sig_inv=" << z._sig_inv << std::endl;
141 return o;
142}