CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
ZDCShape.h
Go to the documentation of this file.
1 #ifndef HcalSimAlgos_ZDCShape_h
2 #define HcalSimAlgos_ZDCShape_h
3 #include<vector>
4 
6 
16 class ZDCShape : public CaloVShape
17 {
18 public:
19 
20  ZDCShape();
21  ZDCShape(const ZDCShape&d);
22 
23  virtual ~ZDCShape(){}
24 
25  virtual double operator () (double time) const;
26  virtual double timeToRise() const ;
27 
28 
29  private:
30  void computeShapeZDC();
31 
32  int nbin_;
33  std::vector<float> nt_;
34 
35 };
36 
37 #endif
38 
shaper for ZDC
Definition: ZDCShape.h:16
virtual ~ZDCShape()
Definition: ZDCShape.h:23
Electronic response of the preamp.
Definition: CaloVShape.h:11
ZDCShape()
Definition: ZDCShape.cc:4
virtual double operator()(double time) const
Definition: ZDCShape.cc:50
int nbin_
Definition: ZDCShape.h:32
void computeShapeZDC()
Definition: ZDCShape.cc:26
std::vector< float > nt_
Definition: ZDCShape.h:33
virtual double timeToRise() const
Definition: ZDCShape.cc:20