Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

NCSpectrumInterpolator.cxx File Reference

#include "NCSpectrumInterpolator.h"
#include "MessageService/MsgService.h"
#include "NCUtils/NCUtility.h"
#include "TCanvas.h"
#include "TH1.h"
#include "TH2.h"
#include "TH3.h"
#include "TMath.h"
#include "TMatrixD.h"
#include <cassert>
#include <cmath>

Go to the source code of this file.

Functions

 CVSID ("$Id: NCSpectrumInterpolator.cxx,v 1.18 2009/11/18 18:58:24 bckhouse Exp $")
ostream & operator<< (ostream &op, const TMatrixD &m)
ostream & operator<< (ostream &op, const vector< double > &m)


Function Documentation

CVSID "$Id: NCSpectrumInterpolator.  cxx,
v 1.18 2009/11/18 18:58:24 bckhouse Exp $" 
 

ostream& operator<< ostream &  op,
const vector< double > &  m
 

Definition at line 311 of file NCSpectrumInterpolator.cxx.

00312 {
00313   op << "[ ";
00314   for(unsigned int n = 0; n < m.size(); ++n) op << m[n] << " ";
00315   op << "]";
00316   return op;
00317 }

ostream& operator<< ostream &  op,
const TMatrixD &  m
 

Definition at line 303 of file NCSpectrumInterpolator.cxx.

References Munits::m.

00304 {
00305   op << "| ";
00306   for(int n = 0; n < m.GetNcols(); ++n) op << m(0, n) << " ";
00307   op << "|";
00308   return op;
00309 }


Generated on Mon Feb 15 11:08:06 2010 for loon by  doxygen 1.3.9.1