#include <vector>
#include <string>
#include <fstream>
#include <iostream>
#include "CLHEP/Matrix/GenMatrix.h"
#include "CLHEP/Matrix/Matrix.h"
#include "CLHEP/Matrix/Vector.h"
Go to the source code of this file.
|
std::ostream & | operator<< (std::ostream &outputFile, const CLHEP::HepGenMatrix &saveMe) |
|
std::istream & | operator>> (std::istream &input, CLHEP::HepGenMatrix &matrix) |
|
std::ostream& operator<< |
( |
std::ostream & |
outputFile, |
|
|
const CLHEP::HepGenMatrix & |
saveMe |
|
) |
| |
std::istream& operator>> |
( |
std::istream & |
input, |
|
|
CLHEP::HepGenMatrix & |
matrix |
|
) |
| |
Definition at line 80 of file matrixSaver.cc.
References cuy::col, and input.
89 assert(numRow ==
matrix.num_row());
90 assert(numCol ==
matrix.num_col());
93 for (
int row = 0; row < numRow; ++row) {
96 assert(
col * row < numRow * numCol);
static std::string const input