MultiGraphしたい(TMultiGraph
)
1TMultiGraph *mg = new TMultiGraph("mg", "mg")
2TGraph *g[4];
3for (Int_t i = 0; i < 4; i++) {
4 g[i] = new TGraph(0);
5 mg->Add(g[i], "pl");
6}
7mg->Draw()
TMultiGraphでGetXaxis()するときには、以下のtipsが必要
http://root.cern.ch/phpBB3/viewtopic.php?f=3&t=4041