CLHEP 2.4.6.4
C++ Class Library for High Energy Physics
Loading...
Searching...
No Matches
Matrix.cc File Reference
#include <iostream>
#include <string.h>
#include <float.h>
#include <cmath>
#include <stdlib.h>
#include "CLHEP/Matrix/defs.h"
#include "CLHEP/Random/Random.h"
#include "CLHEP/Matrix/Matrix.h"
#include "CLHEP/Matrix/SymMatrix.h"
#include "CLHEP/Matrix/DiagMatrix.h"
#include "CLHEP/Matrix/Vector.h"
#include "CLHEP/Utility/thread_local.h"

Go to the source code of this file.

Namespaces

namespace  CLHEP
 

Macros

#define SIMPLE_UOP(OPER)
 
#define SIMPLE_BOP(OPER)
 
#define SIMPLE_TOP(OPER)
 
#define CHK_DIM_2(r1, r2, c1, c2, fun)
 
#define CHK_DIM_1(c1, r2, fun)
 

Functions

HepMatrix CLHEP::dsum (const HepMatrix &, const HepMatrix &)
 
HepMatrix CLHEP::operator+ (const HepMatrix &hm1, const HepMatrix &hm2)
 
HepMatrix CLHEP::operator- (const HepMatrix &hm1, const HepMatrix &hm2)
 
HepMatrix CLHEP::operator/ (const HepMatrix &, double)
 
HepMatrix CLHEP::operator* (const HepMatrix &, double)
 
HepMatrix CLHEP::operator* (double t, const HepMatrix &)
 
HepMatrix CLHEP::operator* (const HepMatrix &, const HepMatrix &)
 
std::ostream & CLHEP::operator<< (std::ostream &s, const HepMatrix &q)
 

Macro Definition Documentation

◆ CHK_DIM_1

#define CHK_DIM_1 (   c1,
  r2,
  fun 
)
Value:
if (c1!=r2) { \
HepGenMatrix::error("Range error in Matrix function " #fun "(2)."); \
}

Definition at line 54 of file Matrix.cc.

◆ CHK_DIM_2

#define CHK_DIM_2 (   r1,
  r2,
  c1,
  c2,
  fun 
)
Value:
if (r1!=r2 || c1!=c2) { \
HepGenMatrix::error("Range error in Matrix function " #fun "(1)."); \
}

Definition at line 49 of file Matrix.cc.

◆ SIMPLE_BOP

#define SIMPLE_BOP (   OPER)
Value:
HepMatrix::mIter a=m.begin(); \
HepMatrix::mcIter b=hm2.m.begin(); \
HepMatrix::mIter e=m.end(); \
for(;a!=e; a++, b++) (*a) OPER (*b);

Definition at line 34 of file Matrix.cc.

◆ SIMPLE_TOP

#define SIMPLE_TOP (   OPER)
Value:
HepMatrix::mcIter a=hm1.m.begin(); \
HepMatrix::mcIter b=hm2.m.begin(); \
HepMatrix::mIter t=mret.m.begin(); \
HepMatrix::mcIter e=hm1.m.end(); \
for(;a!=e; a++, b++, t++) (*t) = (*a) OPER (*b);

Definition at line 40 of file Matrix.cc.

◆ SIMPLE_UOP

#define SIMPLE_UOP (   OPER)
Value:
mIter a=m.begin(); \
mIter e=m.end(); \
for(;a!=e; a++) (*a) OPER t;

Definition at line 29 of file Matrix.cc.