Geant4-11
Functions
G4tgrEvaluator.cc File Reference
#include "G4tgrEvaluator.hh"
#include <cmath>

Go to the source code of this file.

Functions

G4double fltacos (G4double arg)
 
G4double fltasin (G4double arg)
 
G4double fltatan (G4double arg)
 
G4double fltatan2 (G4double arg1, G4double arg2)
 
G4double fltcos (G4double arg)
 
G4double fltcosh (G4double arg)
 
G4double fltexp (G4double arg)
 
G4double fltlog (G4double arg)
 
G4double fltlog10 (G4double arg)
 
G4double fltpow (G4double arg1, G4double arg2)
 
G4double fltsin (G4double arg)
 
G4double fltsinh (G4double arg)
 
G4double fltsqrt (G4double arg)
 
G4double flttan (G4double arg)
 
G4double flttanh (G4double arg)
 

Function Documentation

◆ fltacos()

G4double fltacos ( G4double  arg)

Definition at line 64 of file G4tgrEvaluator.cc.

64{ return std::acos(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltasin()

G4double fltasin ( G4double  arg)

Definition at line 63 of file G4tgrEvaluator.cc.

63{ return std::asin(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltatan()

G4double fltatan ( G4double  arg)

Definition at line 65 of file G4tgrEvaluator.cc.

65{ return std::atan(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltatan2()

G4double fltatan2 ( G4double  arg1,
G4double  arg2 
)

Definition at line 66 of file G4tgrEvaluator.cc.

66{ return std::atan2(arg1, arg2); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltcos()

G4double fltcos ( G4double  arg)

Definition at line 61 of file G4tgrEvaluator.cc.

61{ return std::cos(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltcosh()

G4double fltcosh ( G4double  arg)

Definition at line 68 of file G4tgrEvaluator.cc.

68{ return std::cosh(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltexp()

G4double fltexp ( G4double  arg)

Definition at line 74 of file G4tgrEvaluator.cc.

74{ return std::exp(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltlog()

G4double fltlog ( G4double  arg)

Definition at line 75 of file G4tgrEvaluator.cc.

75{ return std::log(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltlog10()

G4double fltlog10 ( G4double  arg)

Definition at line 76 of file G4tgrEvaluator.cc.

76{ return std::log10(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltpow()

G4double fltpow ( G4double  arg1,
G4double  arg2 
)

Definition at line 77 of file G4tgrEvaluator.cc.

77{ return std::pow(arg1, arg2); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltsin()

G4double fltsin ( G4double  arg)

Definition at line 60 of file G4tgrEvaluator.cc.

60{ return std::sin(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltsinh()

G4double fltsinh ( G4double  arg)

Definition at line 67 of file G4tgrEvaluator.cc.

67{ return std::sinh(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ fltsqrt()

G4double fltsqrt ( G4double  arg)

Definition at line 73 of file G4tgrEvaluator.cc.

73{ return std::sqrt(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ flttan()

G4double flttan ( G4double  arg)

Definition at line 62 of file G4tgrEvaluator.cc.

62{ return std::tan(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().

◆ flttanh()

G4double flttanh ( G4double  arg)

Definition at line 69 of file G4tgrEvaluator.cc.

69{ return std::tanh(arg); }

Referenced by G4tgrEvaluator::AddCommonFunctions().