Fork me on GitHub

Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • modules/PhotonConversions.cc

    rbdfe7f2 rc1ce3fe  
    5959  fItInputArray(0), fConversionMap(0), fDecayXsec(0)
    6060{
    61   fDecayXsec = new TF1("decayXsec","1.0 - 4.0/3.0 * x * (1.0 - x)", 0.0, 1.0);
     61  fDecayXsec = new TF1;
    6262  fConversionMap = new DelphesCylindricalFormula;
    6363}
     
    8484
    8585  fConversionMap->Compile(GetString("ConversionMap", "0.0"));
     86
     87#if  ROOT_VERSION_CODE < ROOT_VERSION(6,04,00)
     88  fDecayXsec->Compile("1.0 - 4.0/3.0 * x * (1.0 - x)");
     89#else
     90  fDecayXsec->GetFormula()->Compile("1.0 - 4.0/3.0 * x * (1.0 - x)");
     91#endif
     92  fDecayXsec->SetRange(0.0, 1.0);
    8693
    8794  // import array with output from filter/classifier module
Note: See TracChangeset for help on using the changeset viewer.