CMS 3D CMS Logo

Pythia6JetGun.h
Go to the documentation of this file.
1 #ifndef gen_Pythia6JetGun_h
2 #define gen_Pythia6JetGun_h
3 
4 #include "Pythia6ParticleGun.h"
5 
6 namespace CLHEP {
7  class HepRandomEngine;
8 }
9 
10 namespace gen {
11 
13  {
14 
15  public:
16 
18  ~Pythia6JetGun() override;
19  // void produce( edm::Event&, const edm::EventSetup& ) ;
20 
21  protected:
22  void generateEvent(CLHEP::HepRandomEngine*) override ;
23 
24  private:
25 
26  double fMinEta;
27  double fMaxEta;
28  double fMinE ;
29  double fMaxE ;
30  double fMinP ;
31  double fMaxP ;
32 
33  };
34 
35 }
36 
37 #endif