#include "GeoSpecialShapes/LArWheelCalculator.h"
#include "CxxUtils/sincos.h"
#include "TMath.h"
#include "TMatrixD.h"
#include "TVectorD.h"
#include "TMatrixDLazy.h"
#include "TDecompLU.h"
#include "TDecompSVD.h"
#include <sys/time.h>
#include <iostream>
#include <iomanip>
#include <math.h>
#include <mutex>
#include "GeoModelKernel/Units.h"
Go to the source code of this file.
|
template<typename T , typename Q > |
std::ostream & | operator<< (std::ostream &ostr, const TVectorT< T > &v) |
|
◆ DEBUGPRINT
◆ MATRIX
◆ SYMMATRIX
◆ VECTOR
◆ operator<<()
template<typename T , typename Q >
std::ostream& operator<< |
( |
std::ostream & |
ostr, |
|
|
const TVectorT< T > & |
v |
|
) |
| |
Definition at line 44 of file sincos_poly.cxx.
46 std::ios_base::fmtflags save_flags(ostr.flags());
48 ostr << std::scientific;
50 ostr <<
v[
idx] <<
", ";
52 ostr <<
v[
v.GetUpb()];
54 ostr.flags(save_flags);