Loading [MathJax]/extensions/tex2jax.js
ATLAS Offline Software
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
Functions
square_root.h File Reference
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

double square_root (double)
 

Function Documentation

◆ square_root()

double square_root ( double  )

Definition at line 7 of file square_root.cxx.

7  {
8  if (x < 0 ){return -1.0;}
9  return sqrt(x);
10 }
x
#define x