ATLAS Offline Software
sincosf.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 // $Id$
13 #include "CxxUtils/sincosf.h"
14 #include <cmath>
15 
16 #ifdef __APPLE__
17 void sincosf(float x, float* sn, float* cs)
18 {
19  *sn = std::sin(x);
20  *cs = std::cos(x);
21 }
22 #endif
drawFromPickle.cos
cos
Definition: drawFromPickle.py:36
x
#define x
sincosf.h
Provide sincosf function for MacOSX.
drawFromPickle.sin
sin
Definition: drawFromPickle.py:36