Changeset 20096 for trunk/Mars/mhbase


Ignore:
Timestamp:
05/07/21 12:37:39 (4 years ago)
Author:
tbretz
Message:
root 6.24 requires some more includes, clasng 10 is a bit more picky about overload warinings and casting, gErrorMutex i deprecated -> so we can only lock our error handler again ourselves... well... mess ahead... thank you.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mhbase/MH3.cc

    r19345 r20096  
    918918            return kTRUE;
    919919        case kLabelsX:
    920             static_cast<TProfile2D*>(fHist)->Fill(labelx, y,      z);
     920            static_cast<TProfile2D*>(fHist)->Fill(labelx, y,      z, 1.);
    921921            return kTRUE;
    922922        case kLabelsY:
    923             static_cast<TProfile2D*>(fHist)->Fill(x,      labely, z);
     923            static_cast<TProfile2D*>(fHist)->Fill(x,      labely, z, 1.);
    924924            return kTRUE;
    925925        case kLabelsXY:
    926             static_cast<TProfile2D*>(fHist)->Fill(labelx, labely, z);
     926            static_cast<TProfile2D*>(fHist)->Fill(labelx, labely, z, 1.);
    927927            return kTRUE;
    928928        }
Note: See TracChangeset for help on using the changeset viewer.