CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/PhysicsTools/Utilities/interface/GammaPropagator.h

Go to the documentation of this file.
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