Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef SimDataFormats_GeneratorProducts_ExternalGeneratorLumiInfo_h
0002 #define SimDataFormats_GeneratorProducts_ExternalGeneratorLumiInfo_h
0003 
0004 /** \class ExternalGeneratorLumiInfo
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  *  begin LuminosityBlock information.
0009  */
0010 #include "SimDataFormats/GeneratorProducts/interface/GenLumiInfoHeader.h"
0011 #include "DataFormats/Common/interface/RandomNumberGeneratorState.h"
0012 
0013 struct ExternalGeneratorLumiInfo {
0014   GenLumiInfoHeader header_;
0015   edm::RandomNumberGeneratorState randomState_;
0016 };
0017 
0018 #endif