CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch9/src/RecoLocalTracker/SiPixelRecHits/interface/SimplePixel.h

Go to the documentation of this file.
00001 //
00002 //  SimplePixel.h (v1.00)
00003 //
00004  
00005 #ifndef SimplePixel_h
00006 #define SimplePixel_h 1
00007 
00008 
00009 class SimplePixel { 
00010         
00011 public:
00012         
00013         SimplePixel() {s = 0.; x = 0.; y = 0.; i = 0; j = 0; btype = 0;} 
00014         
00015         bool operator < (const SimplePixel& rhs) const {return (this->s < rhs.s);}  
00016         
00017         float s;     
00018         float x;     
00019         float y;     
00020         int i;       
00021         int j;       
00022         int btype;   
00023         
00024 } ;
00025 
00026 
00027 #endif