CMS 3D CMS Logo

HcalPulseShape.h
Go to the documentation of this file.
1 #ifndef HcalAlgos_HcalPulseShape_h
2 #define HcalAlgos_HcalPulseShape_h
3 
4 #include <vector>
5 
7 public:
9  HcalPulseShape(const std::vector<double>&, unsigned);
10  void setNBin(int n);
11  void setShapeBin(int i, float f);
12  float operator()(double time) const;
13  float at(double time) const;
14  float integrate(double tmin, double tmax) const;
15  int nbins() const { return nbin_; }
16  std::vector<float> const& data() const { return shape_; }
17 
18 private:
19  std::vector<float> shape_;
20  int nbin_;
21 };
22 
23 #endif
int nbins() const
void setNBin(int n)
std::vector< float > const & data() const
void setShapeBin(int i, float f)
float integrate(double tmin, double tmax) const
std::vector< float > shape_
double f[11][100]
static const double tmax[3]
float operator()(double time) const
float at(double time) const