Changeset 11686 for trunk/FACT++/gui


Ignore:
Timestamp:
07/28/11 14:14:19 (13 years ago)
Author:
tbretz
Message:
Don't divide ADC signal by by two, this is now done in the Drs Calibration procedure; fixed ADC AutoScale
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/gui/FactGui.h

    r11682 r11686  
    11821182        h->SetTitle(str.str().c_str());
    11831183        str.str("");
    1184         str << "ADC Pipeline (start=" << fEventData->StartPix[p] << ")";
     1184        str << "ADC Pipeline (start cell: " << fEventData->StartPix[p] << ")";
    11851185        h->SetXTitle(str.str().c_str());
    11861186
     
    12121212            h->SetMaximum();
    12131213
    1214             h->SetMinimum(h->GetMinimum()<min ? h->GetMinimum() : min);
    1215             h->SetMaximum(h->GetMaximum()>max ? h->GetMaximum() : max);
    1216 
     1214            h->SetMinimum(h->GetMinimum()<min || min==-1111 ? h->GetMinimum() : min);
     1215            h->SetMaximum(h->GetMaximum()>max || max==-1111 ? h->GetMaximum() : max);
    12171216        }
    12181217
Note: See TracChangeset for help on using the changeset viewer.