CMS 3D CMS Logo

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.

References createfilelist::int.

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

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

Definition at line 9 of file nint.h.

References createfilelist::int.

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