ATLAS Offline Software
Loading...
Searching...
No Matches
divide.cxx
Go to the documentation of this file.
1// Copyright (C) 2002-2022 CERN for the benefit of the ATLAS collaboration
2
3// This needs to be in a separate compilation unit.
4// Otherwise it can be inlined and a division by zero handled
5// at compilation time rathern than runtime.
6
7#include "AthExAlgWithFPE.h"
8
9float AthExAlgWithFPE::divide (float a, float b)
10{
11 return a/b;
12}
static Double_t a
float divide(float a, float b)
Definition divide.cxx:9