#include "RecoParticleFlow/PFClusterTools/interface/LinearCalibrator.h"
#include <cassert>
#include <cmath>
#include "TVector.h"
#include "TDecompLU.h"
#include "TDecompSVD.h"
#include "TDecompBK.h"
#include <iostream>
Go to the source code of this file.
Functions |
void | printMat (std::ostream &s, const TMatrixD &input) |
void | printVec (std::ostream &s, const TVectorD &input) |
Function Documentation
void printMat |
( |
std::ostream & |
s, |
|
|
const TMatrixD & |
input |
|
) |
| |
void printVec |
( |
std::ostream & |
s, |
|
|
const TVectorD & |
input |
|
) |
| |
Definition at line 31 of file LinearCalibrator.cc.
References i.
{
s << "\t[";
for (int i(0); i < input.GetNrows(); i++) {
s << input[i];
if (i != (input.GetNrows() - 1)) {
s << ",\n\t";
}
}
s << "\t]\n";
}