CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_4_5_patch3/src/SimCalorimetry/HcalSimAlgos/src/HcalShape.cc

Go to the documentation of this file.
00001 #include "SimCalorimetry/HcalSimAlgos/interface/HcalShape.h"
00002   
00003 HcalShape::HcalShape()
00004 : shape_(HcalPulseShapes().hbShape())
00005 {
00006 }
00007 
00008 double HcalShape::timeToRise() const 
00009 {
00010    return 0.;
00011 }
00012 
00013 double HcalShape::operator () (double time_) const
00014 {
00015   return shape_.at(time_);
00016 }
00017 
00018