Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2023-10-25 09:48:15

0001 //-*-C++-*-
0002 //-*-Dummy.h-*-
0003 //   Written by James Monk and Andrew Pilkington
0004 /////////////////////////////////////////////////////////////////////////////
0005 
0006 #ifndef DUMMY_HH
0007 #define DUMMY_HH
0008 
0009 #include "GeneratorInterface/ExhumeInterface/interface/CrossSection.h"
0010 
0011 namespace Exhume {
0012 
0013   class Dummy : public CrossSection {
0014   public:
0015     Dummy(const edm::ParameterSet&);
0016     double SubProcess() override;
0017     void SetPartons() override;
0018     void SetSubParameters() override;
0019     double SubParameterWeight() override;
0020     void MaximiseSubParameters() override;
0021     double SubParameterRange() override;
0022 
0023   private:
0024     double Inv32;
0025   };
0026 
0027 }  // namespace Exhume
0028 
0029 #endif