CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_3/src/GeneratorInterface/ExhumeInterface/interface/Dummy.h

Go to the documentation of this file.
00001 //-*-C++-*-
00002 //-*-Dummy.h-*-
00003 //   Written by James Monk and Andrew Pilkington
00005 
00006 #ifndef DUMMY_HH
00007 #define DUMMY_HH
00008 
00009 #include "GeneratorInterface/ExhumeInterface/interface/CrossSection.h"
00010 
00011 namespace Exhume{
00012 
00013   class Dummy : public CrossSection{
00014 
00015   public:
00016 
00017     Dummy(const edm::ParameterSet&);
00018     double SubProcess();
00019     void SetPartons();
00020     void SetSubParameters();
00021     double SubParameterWeight();
00022     void MaximiseSubParameters();
00023     double SubParameterRange();
00024 
00025   private:
00026     double Inv32;
00027   };
00028 
00029 }
00030 
00031 #endif