CMS 3D CMS Logo

/data/doxygen/doxygen-1.7.3/gen/CMSSW_4_2_8/src/IOMC/ParticleGuns/interface/FlatRandomPtGunSource.h

Go to the documentation of this file.
00001 #ifndef FlatRandomPtGunSource_H
00002 #define FlatRandomPtGunSource_H
00003 
00010 #include "IOMC/ParticleGuns/interface/BaseFlatGunSource.h"
00011 
00012 namespace edm
00013 {
00014   
00015   class FlatRandomPtGunSource : public BaseFlatGunSource
00016   {
00017   
00018   public:
00019     FlatRandomPtGunSource(const ParameterSet &, const InputSourceDescription&  );
00020     virtual ~FlatRandomPtGunSource();
00021 
00022   private:
00023    
00024     virtual bool produce(Event & e);
00025     
00026   protected :
00027   
00028     // data members
00029     
00030     double            fMinPt   ;
00031     double            fMaxPt   ;
00032 
00033   };
00034 } 
00035 
00036 #endif