Ignore:
Timestamp:
06/13/05 10:20:58 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhflux/MHAlpha.cc

    r7142 r7151  
    292292    if (!fResult)
    293293        return kFALSE;
     294    fSigma = (MParameterD*)const_cast<MParList*>(pl)->FindCreateObj("MParameterD", "GaussSigma");
     295    if (!fSigma)
     296        return kFALSE;
    294297
    295298    //fExcess = (MParameterD*)const_cast<MParList*>(pl)->FindCreateObj("MParameterD", "MExcess");
     
    469472            size = fHillas->GetSize();
    470473        energy = fEnergy   ? fEnergy->GetVal() : (fHillas?fHillas->GetSize():1000);
    471         theta  = fPointPos ? fPointPos->GetZd()   : 0;
    472     }
    473 
    474     //if (size>0)
    475     //    alpha /= (2.4 + 1.13*(log10((energy-14)/0.37)-5)*(log10((energy-14)/0.37)-5))/15;
     474        theta  = fPointPos ? fPointPos->GetZd() : 0;
     475    }
    476476
    477477    // enhance histogram if necessary
     
    480480    // Fill histograms
    481481    fHist.Fill(theta, energy, TMath::Abs(alpha), w);
    482 
    483     // Check cuts
    484     /*
    485     if ( (fEnergyMin>=0 && energy<fEnergyMin) ||
    486          (fEnergyMax>=0 && energy>fEnergyMax) ||
    487          (fSizeMin>=0   && size  <fSizeMin)   ||
    488          (fSizeMax>=0   && size  >fSizeMin) )
    489          return kTRUE;
    490          */
    491482
    492483    if (!fSkipHistTime)
     
    851842
    852843    fResult->SetVal(fFit.GetMinimizationValue());
     844    fSigma->SetVal(fFit.GetGausSigma());
    853845
    854846    if (!fSkipHistEnergy)
Note: See TracChangeset for help on using the changeset viewer.