Ignore:
Timestamp:
02/14/05 14:01:35 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhist/MHCamera.cc

    r6276 r6457  
    858858        if (!issame)
    859859        {
    860             if (IsUsed(i) && iscol)
     860            const Bool_t isnan = TMath::IsNaN(fArray[i+1]);
     861            if (!IsUsed(i) || !iscol || isnan)
    861862            {
    862                 if (TMath::IsNaN(fArray[i+1]))
     863                hex.SetFillColor(10);
     864
     865                if (isnan)
    863866                    gLog << warn << "MHCamera::Update: " << GetName() << " <" << GetTitle() << "> - Pixel Index #" << i << " contents is NaN (Not a Number)..." << endl;
    864 
    865                 hex.SetFillColor(GetColor(GetBinContent(i+1), min, max, islog));
    866867            }
    867868            else
    868                 hex.SetFillColor(10);
     869                hex.SetFillColor(GetColor(GetBinContent(i+1), min, max, islog));
    869870        }
    870871
Note: See TracChangeset for help on using the changeset viewer.