Changeset edeb0f0 in git
- Timestamp:
- Aug 9, 2018, 12:52:20 PM (6 years ago)
- Branches:
- ImprovedOutputFile, Timing, dual_readout, llp, master
- Children:
- ef97f2a
- Parents:
- ba45abf
- Location:
- classes
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
classes/DelphesClasses.h
rba45abf redeb0f0 103 103 104 104 Float_t Weight; // weight for the event 105 Float_t CrossSection; // cross-section in pb 106 Float_t CrossSectionError; // cross-section error in pb 105 107 106 108 Float_t Scale; // energy scale, see hep-ph/0109068 | event_scale() … … 118 120 Float_t PDF1; // PDF (id1, x1, Q) | pdf_info()->pdf1() 119 121 Float_t PDF2; // PDF (id2, x2, Q) | pdf_info()->pdf2() 122 123 120 124 121 125 ClassDef(HepMCEvent, 2) -
classes/DelphesHepMCReader.cc
rba45abf redeb0f0 199 199 } 200 200 } 201 202 else if(key == 'C') 203 { 204 rc = bufferStream.ReadDbl(fCrossSection) 205 && bufferStream.ReadDbl(fCrossSectionError); 206 } 207 201 208 else if(key == 'F') 202 209 { … … 315 322 element->MPI = fMPI; 316 323 element->Weight = fWeight.size() > 0 ? fWeight[0] : 1.0; 324 element->CrossSection = fCrossSection; 325 element->CrossSectionError = fCrossSectionError; 317 326 element->Scale = fScale; 318 327 element->AlphaQED = fAlphaQED; -
classes/DelphesHepMCReader.h
rba45abf redeb0f0 87 87 std::vector< double > fWeight; 88 88 89 double fCrossSection, fCrossSectionError; 90 89 91 int fID1, fID2; 90 92 double fX1, fX2, fScalePDF, fPDF1, fPDF2;
Note:
See TracChangeset
for help on using the changeset viewer.