Ignore:
Timestamp:
04/24/03 11:09:17 (22 years ago)
Author:
wittek
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mhistmc/MHMcCT1CollectionArea.cc

    r1992 r1999  
    183183TObject *MHMcCT1CollectionArea::DrawClone(Option_t* option) const
    184184{
    185   TCanvas *c = MH::MakeDefCanvas(fHistCol);
     185  TCanvas &c = *MakeDefCanvas("CollArea", "Collection area plots", 600, 600);
     186  c.Divide(2,2);
    186187
    187188  //
     
    190191  gROOT->SetSelectedPad(NULL);
    191192
     193  c.cd(1);
     194  fHistCol->SetDirectory(NULL);
    192195  fHistCol->DrawCopy(option);
    193196
    194   c->Modified();
    195   c->Update();
    196 
    197   return c;
     197  c.cd(2);
     198  fHistSel->SetDirectory(NULL);
     199  fHistSel->DrawCopy(option);
     200
     201  c.cd(3);
     202  fHistAll->SetDirectory(NULL);
     203  fHistAll->DrawCopy(option);
     204
     205
     206  c.Modified();
     207  c.Update();
     208
     209  return &c;
    198210}
    199211
Note: See TracChangeset for help on using the changeset viewer.