ATLAS Offline Software
square_root.cxx
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 #include "./square_root.h"
6 #include <cmath>
7 double square_root(double x ){
8  if (x < 0 ){return -1.0;}
9  return sqrt(x);
10 }
x
#define x
square_root
double square_root(double x)
Definition: square_root.cxx:7
square_root.h