Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:31

0001 #ifndef HcalSimAlgos_HFShape_h
0002 #define HcalSimAlgos_HFShape_h
0003 #include <vector>
0004 #include "SimCalorimetry/CaloSimAlgos/interface/CaloVShape.h"
0005 #include "CalibCalorimetry/HcalAlgos/interface/HcalPulseShapes.h"
0006 /**
0007    \class HFShape
0008   
0009    \brief  shaper for HF
0010      
0011 */
0012 class HFShape : public CaloVShape {
0013 public:
0014   HFShape();
0015   ~HFShape() override {}
0016 
0017   double operator()(double time) const override;
0018   double timeToRise() const override;
0019 
0020 private:
0021   HcalPulseShapes::Shape shape_;
0022 };
0023 
0024 #endif