Fork me on GitHub

Changes in / [ef97f2a:71efbfe] in git


Ignore:
Location:
classes
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • classes/DelphesClasses.h

    ref97f2a r71efbfe  
    103103
    104104  Float_t Weight; // weight for the event
    105   Float_t CrossSection; // cross-section in pb
    106   Float_t CrossSectionError; // cross-section error in pb
    107105
    108106  Float_t Scale; // energy scale, see hep-ph/0109068 | event_scale()
     
    120118  Float_t PDF1; // PDF (id1, x1, Q) | pdf_info()->pdf1()
    121119  Float_t PDF2; // PDF (id2, x2, Q) | pdf_info()->pdf2()
    122 
    123 
    124120
    125121  ClassDef(HepMCEvent, 2)
  • classes/DelphesHepMCReader.cc

    ref97f2a r71efbfe  
    199199    }
    200200  }
    201  
    202   else if(key == 'C')
    203   {
    204     rc = bufferStream.ReadDbl(fCrossSection)
    205       && bufferStream.ReadDbl(fCrossSectionError);
    206   }
    207  
    208201  else if(key == 'F')
    209202  {
     
    322315  element->MPI = fMPI;
    323316  element->Weight = fWeight.size() > 0 ? fWeight[0] : 1.0;
    324   element->CrossSection = fCrossSection;
    325   element->CrossSectionError = fCrossSectionError;
    326317  element->Scale = fScale;
    327318  element->AlphaQED = fAlphaQED;
  • classes/DelphesHepMCReader.h

    ref97f2a r71efbfe  
    8787  std::vector< double > fWeight;
    8888
    89   double fCrossSection, fCrossSectionError;
    90 
    9189  int fID1, fID2;
    9290  double fX1, fX2, fScalePDF, fPDF1, fPDF2;
Note: See TracChangeset for help on using the changeset viewer.