CMS 3D CMS Logo

Functions

/data/refman/pasoursint/CMSSW_5_2_7_hltpatch2/src/Geometry/CSCGeometry/interface/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.
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 MuonTrackValidator::beginRun(), CSCSlantedWireGeometry::nearestWire(), and CSCNonslantedWireGeometry::nearestWire().

{ return a>=0 ? int( a+0.5) : int( a-0.5);}
int nint ( double  a) [inline]

Definition at line 9 of file nint.h.

{ return a>=0 ? int( a+0.5) : int( a-0.5);}