Changeset 1774 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
02/20/03 16:35:24 (22 years ago)
Author:
moralejo
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r1773 r1774  
    11
    22                                                         -*-*- END -*-*-
     3 2003/02/20: Abelardo Moralejo
     4
     5    * mhist/MH.cc
     6      - Removed call to TGaxis::Optimize for compilation under root
     7        versions > 3.03, since in them this procedure is no longer existing.
     8        I did this to allow compilation under root_3.04, since earlier
     9        versions has a bug which prevents from plotting in the simple way
     10        some variables in a tree (example: fConc and others in the output
     11        of star.C). This is a temporal fix, I guess something will have to
     12        substitute the call to Optimize...
    313
    414 2003/02/20: Antonio Stamerra
     
    2636    * macros/triglvl2.C
    2737      - added example to use the MFTriggerLvl2 filter.
    28 
    29 
    3038
    3139 2003/02/19: Wolfgang Wittek
  • trunk/MagicSoft/Mars/mhist/MH.cc

    r1668 r1774  
    485485    Double_t binhigh =0;
    486486    Double_t binwidth=0;
     487
     488#if ROOT_VERSION_CODE < ROOT_VERSION(3,03,01)
    487489    TGaxis::Optimize(umin, umax, nbins, binlow, binhigh, nbins, binwidth, "");
     490#endif
    488491
    489492    if (binwidth <= 0 || binwidth > 1.e+39)
Note: See TracChangeset for help on using the changeset viewer.