00001 #ifndef FASTSHOWER_EMHCALLEAKAGEEC_H 00002 #define FASTSHOWER_EMHCALLEAKAGEEC_H 00003 00004 #ifndef FASTSHOWER_IFNOFPARTICLEPARAMETERS2_H 00005 #include "FastShowerUtils/IFnOfParticleParameters2.h" 00006 #endif 00007 00008 #ifndef FASTSHOWER_IDEBUG_H 00009 #include "FastShowerUtils/IDebug.h" 00010 #endif 00011 00012 #ifndef FASTSHOWER_DEBUGBASE_H 00013 #include "FastShowerUtils/DebugBase.h" 00014 #endif 00015 00016 #include <pair.h> 00017 #include <iostream> 00018 namespace FastShower{ 00024 class EmHcalLeakageEc: virtual public IFnOfParticleParameters2, private DebugBase{ 00025 public: 00026 EmHcalLeakageEc(): IFnOfParticleParameters2(), DebugBase("EmHcalLeakageEc"){} 00027 virtual std::pair<double, double> value(const ParticleParameters&) const; 00028 virtual IFnOfParticleParameters2* clone() const; 00029 }; 00030 }//namespace 00031 #endif