CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/CalibMuon/CSCCalibration/interface/CSCFakeCrosstalkMap.h

Go to the documentation of this file.
00001 #ifndef _CSC_FAKE_CROSSTALK_MAP
00002 #define _CSC_FAKE_CROSSTALK_MAP
00003 
00004 #include "CondFormats/CSCObjects/interface/CSCcrosstalk.h"
00005 
00006 class CSCFakeCrosstalkMap{
00007  public:
00008   CSCFakeCrosstalkMap();
00009   
00010   const CSCcrosstalk & get(){
00011     return (*cncrosstalk);
00012   }
00013     
00014   void smear();
00015 
00016  private:
00017   float theMean;
00018   float theMin;
00019   float theMinChi;
00020   int theSeed;
00021   long int theM;
00022   
00023   CSCcrosstalk *cncrosstalk ;
00024   
00025 };
00026 
00027 #endif