#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.
void printMat |
( |
std::ostream & |
s, |
|
|
const TMatrixD & |
input |
|
) |
| |
Definition at line 17 of file LinearCalibrator.cc.
References i, and j.
19 for (
int i(0);
i <
input.GetNrows();
i++) {
20 for (
int j(0);
j <
input.GetNcols();
j++) {
23 if (
i != (
input.GetNrows() - 1)) {
static std::string const input
void printVec |
( |
std::ostream & |
s, |
|
|
const TVectorD & |
input |
|
) |
| |
Definition at line 31 of file LinearCalibrator.cc.
References i.
33 for (
int i(0);
i <
input.GetNrows();
i++) {
35 if (
i != (input.GetNrows() - 1)) {
static std::string const input