/home/bes3soft/bes3soft/Boss/7.0.2/dist/7.0.2/Generator/BesEvtGen/BesEvtGen-00-03-58/src/EvtGen/EvtGenBase/EvtValError.cc File Reference

#include "EvtGenBase/EvtPatches.hh"
#include <assert.h>
#include <math.h>
#include <iostream>
#include "EvtGenBase/EvtValError.hh"

Go to the source code of this file.

Functions

EvtValError operator * (const EvtValError &x1, const EvtValError &x2)
EvtValError operator/ (const EvtValError &x1, const EvtValError &x2)
EvtValError operator+ (const EvtValError &x1, const EvtValError &x2)
EvtValError operator * (const EvtValError &x, double c)
EvtValError operator * (double c, const EvtValError &x)
ostreamoperator<< (ostream &os, const EvtValError &other)


Function Documentation

EvtValError operator * ( double  c,
const EvtValError x 
)

Definition at line 146 of file EvtValError.cc.

00147 {
00148   EvtValError ret(x);
00149   ret*=c;
00150   return ret;
00151 }

EvtValError operator * ( const EvtValError x,
double  c 
)

Definition at line 138 of file EvtValError.cc.

00139 {
00140   EvtValError ret(x);
00141   ret*=c;
00142   return ret;
00143 }

EvtValError operator * ( const EvtValError x1,
const EvtValError x2 
)

Definition at line 115 of file EvtValError.cc.

00116 {
00117   EvtValError ret(x1);
00118   ret *= x2;
00119   return ret;
00120 }

EvtValError operator+ ( const EvtValError x1,
const EvtValError x2 
)

Definition at line 130 of file EvtValError.cc.

00131 {
00132   EvtValError ret(x1);
00133   ret += x2;
00134   return ret;
00135 }

EvtValError operator/ ( const EvtValError x1,
const EvtValError x2 
)

Definition at line 122 of file EvtValError.cc.

00123 {
00124   EvtValError ret(x1);
00125   ret /= x2;
00126   return ret;
00127 }

ostream& operator<< ( ostream os,
const EvtValError other 
)

Definition at line 154 of file EvtValError.cc.

References EvtCyclic3::other().

00155 {
00156   other.print(os);
00157   return os;
00158 }


Generated on Tue Nov 29 23:15:55 2016 for BOSS_7.0.2 by  doxygen 1.4.7