From 794fd6e11aab4e7346aa8e43bdd62c8068e6b9e9 Mon Sep 17 00:00:00 2001 From: Jamil <jamil@jlab.org> Date: Thu, 16 May 2013 14:11:59 -0400 Subject: [PATCH] Remove TPad command just use c1->cd() --- examples/dcdriftdist.C | 2 +- examples/dchitmaps.C | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/dcdriftdist.C b/examples/dcdriftdist.C index fe67618..ca6023e 100644 --- a/examples/dcdriftdist.C +++ b/examples/dcdriftdist.C @@ -22,7 +22,7 @@ for(Int_t ih=0;ih<12;ih++) { Int_t ipad = 2*(ih%6)+1 + ih/6; cout << ipad << endl; - TPad *pt = c1->cd(ipad); + c1->cd(ipad); h[ih]->SetFillColor(kBlue); h[ih]->SetFillStyle(3354); h[ih]->Draw(); diff --git a/examples/dchitmaps.C b/examples/dchitmaps.C index ce968cd..c328501 100644 --- a/examples/dchitmaps.C +++ b/examples/dchitmaps.C @@ -22,7 +22,7 @@ for(Int_t ih=0;ih<12;ih++) { Int_t ipad = 2*(ih%6)+1 + ih/6; cout << ipad << endl; - TPad *pt = c1->cd(ipad); + c1->cd(ipad); h[ih]->SetFillColor(kBlue); h[ih]->SetFillStyle(3354); h[ih]->Draw(); -- GitLab