All oth | ~0 | All others | ~0
Float_t kim_a_earth[11] = { 08, 14, 13, 26, 20, 11, 19, 12, 22, 01, 06 };
Float_t kim_perc_earth[11] = { 47, 28, 7.9, 4.5, 3.5, 2.5, 2.5, 2.2, 0.46, 0.22, 0.19 };
Float_t kim_a_human[11] = { 01, 08, 06, 07, 20, 15, 17, 19, 16, 11, 12 };
Float_t kim_perc_human[11] = { 63, 25.5, 9.5, 1.4, 0.31, 0.22, 0.03, 0.06, 0.05, 0.03, 0.01 };
h13->SetMaximum(100.0);
for (int i=0; i<11; i++) {
h13->SetBinContent(kim_a_human[i],kim_perc_human[i]);
h14->SetBinContent(kim_a_earth[i],kim_perc_earth[i]);
}
h13->SetMarkerStyle(8);
h13->SetMarkerColor(4);
h13->SetMarkerSize(1);
h14->SetMarkerStyle(8);
h14->SetMarkerColor(3);
h14->SetMarkerSize(1);
}
|