Changeset 1999 for trunk/MagicSoft/Mars/mhistmc
- Timestamp:
- 04/24/03 11:09:17 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mhistmc/MHMcCT1CollectionArea.cc
r1992 r1999 183 183 TObject *MHMcCT1CollectionArea::DrawClone(Option_t* option) const 184 184 { 185 TCanvas *c = MH::MakeDefCanvas(fHistCol); 185 TCanvas &c = *MakeDefCanvas("CollArea", "Collection area plots", 600, 600); 186 c.Divide(2,2); 186 187 187 188 // … … 190 191 gROOT->SetSelectedPad(NULL); 191 192 193 c.cd(1); 194 fHistCol->SetDirectory(NULL); 192 195 fHistCol->DrawCopy(option); 193 196 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; 198 210 } 199 211
Note:
See TracChangeset
for help on using the changeset viewer.