CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Functions
nint.h File Reference

Go to the source code of this file.

Functions

int nint (float a)
 Return the nearest integer - analogous to the FORTRAN intrinsic NINT. More...
 
int nint (double a)
 

Function Documentation

int nint ( float  a)
inline

Return the nearest integer - analogous to the FORTRAN intrinsic NINT.

Definition at line 8 of file nint.h.

Referenced by CSCSlantedWireGeometry::nearestWire(), and CSCNonslantedWireGeometry::nearestWire().

8 { return a >= 0 ? int(a + 0.5) : int(a - 0.5); }
double a
Definition: hdecay.h:119
int nint ( double  a)
inline

Definition at line 9 of file nint.h.

9 { return a >= 0 ? int(a + 0.5) : int(a - 0.5); }
double a
Definition: hdecay.h:119