GM2Calc 2.3.0
Loading...
Searching...
No Matches
Namespaces | Macros | Functions
MSSMNoFV_onshell.cpp File Reference

Go to the source code of this file.

Namespaces

namespace  gm2calc
 
namespace  gm2calc::detail
 

Macros

#define WARN_OR_THROW_IF(cond, msg)
 
#define WARN_OR_THROW_IF_ZERO(mass, msg)    WARN_OR_THROW_IF(is_zero(get_##mass(), eps), msg)
 
#define COPY_IF_ZERO_0(m)
 
#define COPY_IF_ZERO_1(m, z)
 
#define COPY_IF_ZERO_2(m, u, v)
 

Functions

template<class Derived >
unsigned gm2calc::detail::find_bino_like_neutralino (const Eigen::MatrixBase< Derived > &ZN)
 Returns index of most bino-like neutralino.
 
template<class Derived >
unsigned gm2calc::detail::find_right_like_smuon (const Eigen::MatrixBase< Derived > &ZM)
 Returns index of most right-handed smuon.
 
std::ostream & gm2calc::operator<< (std::ostream &, const MSSMNoFV_onshell &)
 streaming operator
 

Macro Definition Documentation

◆ COPY_IF_ZERO_0

#define COPY_IF_ZERO_0 (   m)
Value:
if (is_zero(get_physical().m, eps)) { \
get_physical().m = get_##m(); \
}

◆ COPY_IF_ZERO_1

#define COPY_IF_ZERO_1 (   m,
 
)
Value:
if (is_zero(get_physical().m, eps)) { \
get_physical().m = get_##m(); \
get_physical().z = get_##z(); \
}

◆ COPY_IF_ZERO_2

#define COPY_IF_ZERO_2 (   m,
  u,
  v 
)
Value:
if (is_zero(get_physical().m, eps)) { \
get_physical().m = get_##m(); \
get_physical().u = get_##u(); \
get_physical().v = get_##v(); \
}
double v

◆ WARN_OR_THROW_IF

#define WARN_OR_THROW_IF (   cond,
  msg 
)
Value:
if (cond) { \
if (do_force_output()) { \
WARNING(msg); \
} else { \
throw EInvalidInput(msg); \
} \
}

◆ WARN_OR_THROW_IF_ZERO

#define WARN_OR_THROW_IF_ZERO (   mass,
  msg 
)     WARN_OR_THROW_IF(is_zero(get_##mass(), eps), msg)