Changeset 8027


Ignore:
Timestamp:
10/09/06 09:53:24 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r8026 r8027  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20
     21 2006/10/09 Thomas Bretz
     22
     23   * mhflux/MMcSpectrumWeight.cc:
     24     - fixed a bug which caused the spectra to be normalized at 1GeV
     25       by default instead of the integral
     26
     27
    2028
    2129 2006/10/08 Thomas Bretz
  • trunk/MagicSoft/Mars/NEWS

    r8012 r8027  
    157157   - ganymed: use the same spark cuts as in ganymed_wobble.rc as in
    158158     ganymed_onoff.rc. Seems to be unintentional that they were different.
     159
     160   - sponde: Since the introduction of the possibility to define a
     161     normalization energy instead of using the integral the default
     162     was not using the integral anymore but a normalization energy of
     163     1GeV. It is now the integral again.
    159164
    160165
  • trunk/MagicSoft/Mars/mhflux/MMcSpectrumWeight.cc

    r7784 r8027  
    114114
    115115    fNorm        =  1;
    116     fNormEnergy  =  1;
     116    fNormEnergy  = -1;
    117117
    118118    fAllowChange = kFALSE;
     
    420420    *fLog << " Simulated spectral slope: " << fOldSlope << endl;
    421421    *fLog << " New spectral slope:       " << fNewSlope << endl;
    422     *fLog << " User normalization:       " << fNorm << endl;
     422    *fLog << " Additional user norm.:    " << fNorm << endl;
    423423    *fLog << " Spectra are normalized:   " << (fNormEnergy<0?"by integral":Form("at %.1fGeV", fNormEnergy)) << endl;
    424424    *fLog << " Old Spectrum:     " << GetFormulaSpecOldX() << "   (I=" << GetSpecOldIntegral() << ")" << endl;
Note: See TracChangeset for help on using the changeset viewer.