CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Public Attributes
RealQuadEquation Struct Reference

#include <RealQuadEquation.h>

Public Member Functions

 RealQuadEquation (double A, double B, double C)
 

Public Attributes

double first
 
bool hasSolution
 
double second
 

Detailed Description

A numericaly stable and as fast as can be quadratic equation solver. The equation has the form A*x^2 + B*x + C = 0

Definition at line 11 of file RealQuadEquation.h.

Constructor & Destructor Documentation

RealQuadEquation::RealQuadEquation ( double  A,
double  B,
double  C 
)
inline

Definition at line 16 of file RealQuadEquation.h.

References funct::A, gen::C, first, submitPVResolutionJobs::q, edm::second(), and mathSSE::sqrt().

16  {
17  double D = B * B - 4 * A * C;
18  if (D < 0)
19  hasSolution = false;
20  else {
21  hasSolution = true;
22  auto q = -0.5 * (B + std::copysign(std::sqrt(D), B));
23  first = q / A;
24  second = C / q;
25  }
26  }
T sqrt(T t)
Definition: SSEVec.h:19
static const std::string B
DecomposeProduct< arg, typename Div::arg > D
Definition: Factorize.h:141

Member Data Documentation

double RealQuadEquation::first
bool RealQuadEquation::hasSolution
double RealQuadEquation::second