CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_6_2_7/src/CalibCalorimetry/HcalPlugins/src/HFRecalibration.h

Go to the documentation of this file.
00001 #ifndef CalibCalorimetry_HFRecalibration_h
00002 #define CalibCalorimetry_HFRecalibration_h
00003 //
00004 // Simple class with parameterized function provided by James Wetzel  
00005 // to compansate for darkening of HF QP fibers   
00006 // in Upgrade conditions
00007 // correction = f (integrated lumi, depth, ieta)
00008 //
00009 #include <cmath>
00010 #include <iostream>
00011 
00012 class HFRecalibration {
00013 
00014 public:
00015   HFRecalibration();
00016   ~HFRecalibration();
00017   double getCorr(int ieta, int idepth, double lumi);
00018 private:
00019 
00020 };
00021 
00022 #endif // HFRecalibration_h