ATLAS Offline Software
Loading...
Searching...
No Matches
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>
7double square_root(double x ){
8 if (x < 0 ){return -1.0;}
9 return sqrt(x);
10}
#define x
double square_root(double x)