ATLAS Offline Software
Loading...
Searching...
No Matches
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 x)

Definition at line 7 of file square_root.cxx.

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