BOSS 6.6.4.p01
BESIII Offline Software System
Loading...
Searching...
No Matches
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)
 
ostream & operator<< (ostream &os, const EvtValError &other)
 

Function Documentation

◆ operator*() [1/3]

EvtValError operator* ( const EvtValError x,
double  c 
)

Definition at line 138 of file EvtValError.cc.

139{
140 EvtValError ret(x);
141 ret*=c;
142 return ret;
143}

◆ operator*() [2/3]

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

Definition at line 115 of file EvtValError.cc.

116{
117 EvtValError ret(x1);
118 ret *= x2;
119 return ret;
120}

◆ operator*() [3/3]

EvtValError operator* ( double  c,
const EvtValError x 
)

Definition at line 146 of file EvtValError.cc.

147{
148 EvtValError ret(x);
149 ret*=c;
150 return ret;
151}

◆ operator+()

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

Definition at line 130 of file EvtValError.cc.

131{
132 EvtValError ret(x1);
133 ret += x2;
134 return ret;
135}

◆ operator/()

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

Definition at line 122 of file EvtValError.cc.

123{
124 EvtValError ret(x1);
125 ret /= x2;
126 return ret;
127}

◆ operator<<()

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

Definition at line 154 of file EvtValError.cc.

155{
156 other.print(os);
157 return os;
158}
Index other(Index i, Index j)
Definition: EvtCyclic3.cc:118