00001 #ifndef FASTSHOWER_PEAKMEANC0EMECALBAR1_H 00002 #define FASTSHOWER_PEAKMEANC0EMECALBAR1_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 00013 #include <iostream> 00014 namespace FastShower{ 00021 class PolyArgs; 00022 00023 class PeakMeanC0EmEcalBar1: virtual public IFn, private DebugBase{ 00024 public: 00025 PeakMeanC0EmEcalBar1():IFn(),DebugBase("PeakMeanC0EmEcalBar1"){} 00026 virtual double value(const PolyArgs&) const; 00027 00028 virtual IFn* clone() const; 00029 }; 00030 } 00031 #endif 00032 00033