Skip to content
Snippets Groups Projects
Commit 9180de0a authored by audrey.chatillon's avatar audrey.chatillon
Browse files

[Epic] adapt bining

parent f354ef5c
No related branches found
No related tags found
No related merge requests found
Checking pipeline status
......@@ -67,7 +67,7 @@ void run(int fileno=1)
// === ==========
TH1D * h1_Qmax = new TH1D(Form("Qmax_per_AlphaDecayWindowOf%ius",AlphaDecay_TimeWindow),
Form("Qmax_per_AlphaDecayWindowOf%ius",AlphaDecay_TimeWindow),300000,100000,400000);
Form("Qmax_per_AlphaDecayWindowOf%ius",AlphaDecay_TimeWindow),100000,0,100000);
#if DEBUG
TH1D * h1_QvsT = new TH1D("influence_vs_time_1D","influence_vs_time_1D",nbins_convol,-2*range_gauss,nbins_QvsT*1000*time_bin_width_ns+2*range_gauss);
h1_QvsT->GetXaxis()->SetTitle("Absolute time [ps] 200ps/bin");
......@@ -183,6 +183,10 @@ void run(int fileno=1)
h1_convolution_QvsT->Draw("same");
#endif
TCanvas * can_Qmax = new TCanvas("Qmax","Qmax",0,0,2000,1500);
can_Qmax->cd();
h1_Qmax->Draw();
TFile * fsave = new TFile(Form("out_K11_alpha240Pu_window%ius_%i.root",AlphaDecay_TimeWindow,fileno),"recreate");
h1_Qmax->Write();
fsave->Close();
......
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