Skip to content
Snippets Groups Projects
Commit 1983a5fb authored by Olivier Couet's avatar Olivier Couet
Browse files

- use Fill(const char* name, Double_t w);

git-svn-id: http://root.cern.ch/svn/root/trunk@37179 27541ba8-7e3a-0410-8455-c3a389f83636
parent 868c504a
No related branches found
No related tags found
No related merge requests found
......@@ -47,6 +47,7 @@ void th2polyUSA()
TFile *f;
f = TFile::Open("http://root.cern.ch/files/usa.root");
// Define the TH2Poly bins.
TMultiGraph *mg;
TKey *key;
TIter nextkey(gDirectory->GetListOfKeys());
......@@ -55,14 +56,12 @@ void th2polyUSA()
if (obj->InheritsFrom("TMultiGraph")) {
mg = (TMultiGraph*)obj;
bin = p->AddBin(mg);
for (i=0; i<nx; i++) {
if (strstr(states[i],mg->GetName())) {
p->SetBinContent(bin, pop[i]);
}
}
}
}
// Fill TH2Poly.
for (i=0; i<nx; i++) p->Fill(states[i], pop[i]);
gStyle->SetOptStat(11);
gStyle->SetPalette(1);
p->Draw("gllego");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment