CLHEP 2.4.6.4
C++ Class Library for High Energy Physics
Loading...
Searching...
No Matches
XF Namespace Reference

Classes

class  Function
 
class  PostMult
 
class  Pow
 
class  PreMult
 
class  Product
 

Typedefs

typedef const FunctionTRANSFUNCTION
 

Functions

Product operator* (const Function &op1, const Function &op2)
 
PreMult operator* (const HepGeom::Transform3D &xf, const Function &op2)
 
PostMult operator* (const Function &op2, const HepGeom::Transform3D &xf)
 

Typedef Documentation

◆ TRANSFUNCTION

typedef const Function& XF::TRANSFUNCTION

Definition at line 230 of file XF.h.

Function Documentation

◆ operator*() [1/3]

Product XF::operator* ( const Function op1,
const Function op2 
)

Definition at line 23 of file XF.cc.

24 {
25 return Product (&a, &b);
26 }

◆ operator*() [2/3]

PostMult XF::operator* ( const Function op2,
const HepGeom::Transform3D xf 
)

Definition at line 33 of file XF.cc.

34 {
35 return PostMult (&a, xf);
36 }

◆ operator*() [3/3]

PreMult XF::operator* ( const HepGeom::Transform3D xf,
const Function op2 
)

Definition at line 28 of file XF.cc.

29 {
30 return PreMult (xf, &b);
31 }