CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Classes | Functions
CSCGeometryValidate.cc File Reference
#include "FWCore/Framework/interface/one/EDAnalyzer.h"
#include "FWCore/Framework/interface/MakerMacros.h"
#include "FWCore/Framework/interface/EventSetup.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include "FWCore/ParameterSet/interface/ParameterSet.h"
#include "Geometry/CSCGeometry/interface/CSCGeometry.h"
#include "Geometry/CSCGeometry/interface/CSCChamber.h"
#include "Geometry/CSCGeometry/interface/CSCLayer.h"
#include "Geometry/CSCGeometry/interface/CSCLayerGeometry.h"
#include "Geometry/CSCGeometry/interface/CSCStripTopology.h"
#include "Geometry/CSCGeometry/interface/CSCWireTopology.h"
#include "Geometry/CommonTopologies/interface/StripTopology.h"
#include "Geometry/Records/interface/MuonGeometryRecord.h"
#include "Fireworks/Core/interface/FWGeometry.h"
#include "DataFormats/GeometrySurface/interface/RectangularPlaneBounds.h"
#include "DataFormats/GeometrySurface/interface/TrapezoidalPlaneBounds.h"
#include <TFile.h>
#include <TH1.h>
#include <limits>
#include <string>
#include <type_traits>
#include <algorithm>

Go to the source code of this file.

Classes

class  CSCGeometryValidate
 

Functions

template<class T >
enable_if<!numeric_limits< T >
::is_integer, bool >::type 
almost_equal (T x, T y, int ulp)
 
static const
edm::ParameterSetDescriptionFillerPluginFactory::PMaker
< edm::ParameterSetDescriptionFiller
< CSCGeometryValidate > > 
s_filler__LINE__ ("CSCGeometryValidate")
 
static const
edm::MakerPluginFactory::PMaker
< edm::WorkerMaker
< CSCGeometryValidate > > 
s_maker__LINE__ ("CSCGeometryValidate")
 

Function Documentation

template<class T >
enable_if<!numeric_limits<T>::is_integer, bool>::type almost_equal ( T  x,
T  y,
int  ulp 
)

Definition at line 42 of file CSCGeometryValidate.cc.

References funct::abs(), geometryDiff::epsilon, and min().

Referenced by DTGeometryValidate::getDiff(), RPCGeometryValidate::getDiff(), GEMGeometryValidate::getDiff(), ME0GeometryValidate::getDiff(), and CSCGeometryValidate::getDiff().

42  {
43  // the machine epsilon has to be scaled to the magnitude of the values used
44  // and multiplied by the desired precision in ULPs (units in the last place)
45  return abs(x - y) <= numeric_limits<T>::epsilon() * abs(x + y) * ulp
46  // unless the result is subnormal
47  || abs(x - y) < numeric_limits<T>::min();
48 }
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
uint16_t const *__restrict__ x
Definition: gpuClustering.h:39
T min(T a, T b)
Definition: MathUtil.h:58
static const edm::ParameterSetDescriptionFillerPluginFactory::PMaker<edm::ParameterSetDescriptionFiller< CSCGeometryValidate > > s_filler__LINE__ ( "CSCGeometryValidate"  )
static
static const edm::MakerPluginFactory ::PMaker< edm::WorkerMaker< CSCGeometryValidate > > s_maker__LINE__ ( "CSCGeometryValidate"  )
static