Go to the documentation of this file.00001 #ifndef EcalSimAlgos_ESShape_h
00002 #define EcalSimAlgos_ESShape_h
00003
00004 #include "SimCalorimetry/CaloSimAlgos/interface/CaloVShape.h"
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 class ESShape : public CaloVShape
00017 {
00018
00019 public:
00020
00022 ESShape();
00024 ~ESShape(){}
00025
00026 void setGain (const int gain) { theGain_ = gain; }
00027 virtual double operator () (double time) const;
00028 virtual double timeToRise() const ;
00029
00030 void display () const {}
00031
00032 private:
00033
00034 int theGain_;
00035
00036 };
00037
00038 #endif