Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef SimDataFormats_GeneratorProducts_WeightsInfo_h
0002 #define SimDataFormats_GeneratorProducts_WeightsInfo_h
0003 
0004 /** \class PdfInfo
0005  *
0006  */
0007 #include <string>
0008 
0009 namespace gen {
0010   struct WeightsInfo {
0011     WeightsInfo() : id(""), wgt(0.) {}
0012     WeightsInfo(const std::string& s, const double w) : id(s), wgt(w) {}
0013     std::string id;
0014     double wgt;
0015   };
0016 }  // namespace gen
0017 
0018 #endif  // SimDataFormats_GeneratorProducts_WeightsInfo_h