CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_2_9/src/DataFormats/GeometrySurface/interface/OpenBounds.h

Go to the documentation of this file.
00001 #ifndef Geom_OpenBounds_H
00002 #define Geom_OpenBounds_H
00003 
00004 
00005 #include "DataFormats/GeometryVector/interface/LocalPoint.h"
00006 #include "DataFormats/GeometrySurface/interface/Bounds.h"
00007 
00009 
00010 class OpenBounds : public Bounds {
00011 public:
00012   
00013   virtual float length() const  { return 1000000.; } 
00014   virtual float width() const { return 1000000.; }
00015   virtual float thickness() const { return 1000000.; }
00016 
00017   // basic bounds function
00018 
00019   virtual bool inside( const Local3DPoint& p ) const { return true;}
00020 
00021   virtual bool inside( const Local3DPoint& p, 
00022                        const LocalError& err, float scale) const { return true;}
00023 
00024   virtual bool inside( const Local2DPoint& p, 
00025                        const LocalError& err, float scale) const { return true;}
00026 
00027   virtual Bounds* clone() const { return new OpenBounds();}
00028 
00029 };
00030 
00031 
00032 #endif // Geom_OpenBounds_H
00033 
00034 
00035 
00036 
00037 
00038 
00039 
00040 
00041 
00042 
00043 
00044 
00045 
00046 
00047 
00048 
00049 
00050 
00051 
00052 
00053 
00054 
00055 
00056 
00057 
00058 
00059 
00060 
00061 
00062 
00063 
00064