Ignore:
Timestamp:
07/13/03 19:01:14 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/meventdisp
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/meventdisp/MGCamDisplay.cc

    r2266 r2275  
    2626
    2727#include <TList.h>               // TList::Add
     28#include <TStyle.h>              // gStyle->SetOptStat
    2829#include <TCanvas.h>             // TCanvas::cd
    2930#include <TGButton.h>            // TGPictureButton
     
    176177    // Show camera display for the actual geometry
    177178    //
     179    gStyle->SetOptStat(1100);
    178180    for (int i=0; i<5; i++)
    179181    {
    180182        fCanvas2[i]->cd();
    181183        fDisplay[i] = new MHCamera(*geom);
    182         fDisplay[i]->SetOptStat(1100);
    183184        fDisplay[i]->Draw();
    184185        fDisplay[i]->AddNotify(*(MCamEvent*)GetParList()->FindObject("MRawEvtData"));
  • trunk/MagicSoft/Mars/meventdisp/MGEvtDisplay.cc

    r2266 r2275  
    280280    MGeomCamMagic geom;
    281281    MHCamera *display = new MHCamera(geom);
    282     display->SetOptStat(0);
     282    display->SetBit(TH1::kNoStats);
    283283    display->Draw();
    284284    display->DrawPixelIndices();
Note: See TracChangeset for help on using the changeset viewer.