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