Skip to content

Commit 22aea56

Browse files
revert size of the histograms
1 parent b8b8f45 commit 22aea56

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Detectors/Upgrades/ALICE3/IOTOF/macros/CheckDigitsIOTOF.C

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,13 +250,13 @@ void CheckDigitsIOTOF(std::string digifile = "tf3digits.root", std::string hitfi
250250
auto canvdXdZ = new TCanvas("canvdXdZ", "", 1600, 800);
251251
canvdXdZ->Divide(2, 1);
252252
canvdXdZ->cd(1);
253-
nt->Draw("dx:dz>>h_dx_vs_dz_ITOF(150, -0.03, 0.03, 150, -0.03, 0.03)", "id >= 0 && id < 1920", "colz");
253+
nt->Draw("dx:dz>>h_dx_vs_dz_ITOF(600, -0.03, 0.03, 600, -0.03, 0.03)", "id >= 0 && id < 1920", "colz");
254254
addTLines(0.01);
255255
auto h = (TH2F*)gPad->GetPrimitive("h_dx_vs_dz_ITOF");
256256
Info("ITOF", "RMS(dx)=%.1f mu", h->GetRMS(2) * 1e4);
257257
Info("ITOF", "RMS(dz)=%.1f mu", h->GetRMS(1) * 1e4);
258258
canvdXdZ->cd(2);
259-
nt->Draw("dx:dz>>h_dx_vs_dz_OTOF(150, -0.03, 0.03, 150, -0.03, 0.03)", "id >= 1920 && id < 55488", "colz");
259+
nt->Draw("dx:dz>>h_dx_vs_dz_OTOF(600, -0.03, 0.03, 600, -0.03, 0.03)", "id >= 1920 && id < 55488", "colz");
260260
addTLines(0.01);
261261
h = (TH2F*)gPad->GetPrimitive("h_dx_vs_dz_OTOF");
262262
Info("OTOF", "RMS(dx)=%.1f mu", h->GetRMS(2) * 1e4);

0 commit comments

Comments
 (0)