Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:29:41

0001 #ifndef SimDataFormats_GeneratorProducts_ExternalGeneratorEventInfo_h
0002 #define SimDataFormats_GeneratorProducts_ExternalGeneratorEventInfo_h
0003 
0004 /** \class ExternalGeneratorEventInfo
0005  *
0006  * This class is an internal detail of the ExternalGeneratorFilter. It is the type
0007  *  used to transfer from the external process to ExternalGeneratorFilter the 
0008  *  event information.
0009  */
0010 #include "SimDataFormats/GeneratorProducts/interface/HepMCProduct.h"
0011 #include "SimDataFormats/GeneratorProducts/interface/GenEventInfoProduct.h"
0012 #include "DataFormats/Common/interface/RandomNumberGeneratorState.h"
0013 
0014 struct ExternalGeneratorEventInfo {
0015   edm::HepMCProduct hepmc_;
0016   GenEventInfoProduct eventInfo_;
0017   edm::RandomNumberGeneratorState randomState_;
0018   bool keepEvent_;
0019 };
0020 
0021 #endif