00001 #ifndef FASTSHOWER_PEAKSIGMASNEMECALEC1_H 00002 #define FASTSHOWER_PEAKSIGMASNEMECALEC1_H 00003 00004 #ifndef FASTSHOWER_IFN_H 00005 #include "FastShowerUtils/IFn.h" 00006 #endif 00007 00008 #ifndef FASTSHOWER_DEBUGBASE_H 00009 #include "FastShowerUtils/DebugBase.h" 00010 #endif 00011 00012 #include <iostream> 00013 namespace FastShower{ 00020 class PolyArgs; 00021 00022 class PeakSigmaSNEmEcalEc1: virtual public IFn, private DebugBase{ 00023 public: 00024 PeakSigmaSNEmEcalEc1():IFn(),DebugBase("PeakSigmaSNEmEcalEc1"){} 00025 virtual double value(const PolyArgs&) const; 00026 00027 virtual IFn* clone() const; 00028 }; 00029 } 00030 #endif 00031 00032