00001 #ifndef FASTSHOWER_EMETARESPONSE_H 00002 #define FASTSHOWER_EMETARESPONSE_H 00003 00004 #ifndef FASTSHOWER_IFNOFPARTICLEPARAMETERS_H 00005 #include "FastShowerUtils/IFnOfParticleParameters.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 <iostream> 00017 namespace FastShower{ 00025 class EmEtaResponse: virtual public IFnOfParticleParameters, private DebugBase{ 00026 public: 00027 EmEtaResponse(): IFnOfParticleParameters(), DebugBase("EmEtaResponse"){} 00028 virtual double value(const ParticleParameters&) const; 00029 virtual IFnOfParticleParameters* clone() const; 00030 }; 00031 }//namespace 00032 #endif 00033 00034 00035 00036 00037 00038 00039 00040