ATLAS Offline Software
Classes | Typedefs | Functions
MissingETHandlers Namespace Reference

Classes

class  Weight
 

Typedefs

typedef std::tuple< float, float, float, unsigned short int > struct_t
 

Functions

Weight operator* (const Weight &w1, const Weight &w2)
 
Weight operator* (const Weight &w, double scale)
 
Weight operator* (double scale, const Weight &w)
 
Weight operator/ (const Weight &w1, const Weight &w2)
 
Weight operator+ (const Weight &w1, const Weight &w2)
 
Weight operator- (const Weight &w1, const Weight &w2)
 

Typedef Documentation

◆ struct_t

typedef std::tuple<float,float,float,unsigned short int> MissingETHandlers::struct_t

Function Documentation

◆ operator*() [1/3]

Weight MissingETHandlers::operator* ( const Weight w,
double  scale 
)

Definition at line 19 of file Reconstruction/MissingETEvent/src/MissingETComposition.cxx.

20 {
21  return Weight(scale*w.wpx(),scale*w.wpy(),scale*w.wet());
22 }

◆ operator*() [2/3]

Weight MissingETHandlers::operator* ( const Weight w1,
const Weight w2 
)

Definition at line 14 of file Reconstruction/MissingETEvent/src/MissingETComposition.cxx.

15 {
16  return Weight(w1.wpx()*w2.wpx(),w1.wpy()*w2.wpy(),w1.wet()*w2.wet());
17 }

◆ operator*() [3/3]

Weight MissingETHandlers::operator* ( double  scale,
const Weight w 
)

Definition at line 24 of file Reconstruction/MissingETEvent/src/MissingETComposition.cxx.

25 {
26  return Weight(scale*w.wpx(),scale*w.wpy(),scale*w.wet());
27 }

◆ operator+()

Weight MissingETHandlers::operator+ ( const Weight w1,
const Weight w2 
)

Definition at line 34 of file Reconstruction/MissingETEvent/src/MissingETComposition.cxx.

35 {
36  return Weight(w1.wpx()+w2.wpx(),w1.wpy()+w2.wpy(),w1.wet()+w2.wet());
37 }

◆ operator-()

Weight MissingETHandlers::operator- ( const Weight w1,
const Weight w2 
)

Definition at line 39 of file Reconstruction/MissingETEvent/src/MissingETComposition.cxx.

40 {
41  return Weight(w1.wpx()-w2.wpx(),w1.wpy()-w2.wpy(),w1.wet()-w2.wet());
42 }

◆ operator/()

Weight MissingETHandlers::operator/ ( const Weight w1,
const Weight w2 
)

Definition at line 29 of file Reconstruction/MissingETEvent/src/MissingETComposition.cxx.

30 {
31  return Weight(w1.wpx()/w2.wpx(),w1.wpy()/w2.wpy(),w1.wet()/w2.wet());
32 }
yodamerge_tmp.scale
scale
Definition: yodamerge_tmp.py:138
python.IoTestsLib.w
def w
Definition: IoTestsLib.py:200