00001 #include "SimCalorimetry/HcalSimAlgos/interface/HFShape.h" 00002 00003 HFShape::HFShape() 00004 : shape_(HcalPulseShapes().hfShape()) 00005 { 00006 } 00007 00008 double 00009 HFShape::timeToRise() const 00010 { 00011 return 0. ; 00012 } 00013 00014 double HFShape::operator () (double time) const 00015 { 00016 return shape_.at(time); 00017 } 00018