00001 #ifndef PhysicsTools_Utilities_GammaPropagator_h 00002 #define PhysicsTools_Utilities_GammaPropagator_h 00003 00004 namespace funct { 00005 00006 struct GammaPropagator { 00007 GammaPropagator() {} 00008 double operator()(double mass) const { 00009 if(mass <= 0) return 0; 00010 return 1./(mass*mass); 00011 } 00012 }; 00013 00014 } 00015 00016 #endif