* Analyzing 17F approach will require the use of a #define in addition to globals. Not ideal but it is what it is. * No new clever tricks other than beam eloss being treated to account for more effects. * Urgent pending alignments: - geometry between sx3/qqq/pc to reflect vertexz in agreement with sourcez - better dynamic range correction for a1c2 wire handover points - need to resolve dE layer for different particle groups. No luck yet with just a *sinTheta - p+a dataset seems to be getting closer and closer to fully fleshed out * Do not use this commit for future analyses. Pushed under sleep deprivation and fatigue.
28 lines
927 B
C
28 lines
927 B
C
{
|
|
TCanvas c;
|
|
//c.SetLogy(kTRUE);
|
|
TGraph kinematics("a(p,p)a_kinematics_7MeV_p.txt","%*lf %*lf %lf %lf");
|
|
kinematics.Scale(4.0);
|
|
kinematics.SetLineColor(kBlue);
|
|
kinematics.SetLineWidth(2.);
|
|
//TFile fin("4He(pp)_candidate_kinematic_curve.root");
|
|
//TH2F *h2 = (TH2F*)(fin.Get("Ef_thetaf_AnodeQQQR_TC1_PC1_pidlow0_1"));
|
|
|
|
// TFile fin("../results_run017.root");
|
|
// TFile fin("out_zminus5_catima.root");
|
|
//TFile fin("out.root");
|
|
TFile fin("out_truncRhoVertex_Z_vertex.root");
|
|
//TH2F *h2 = (TH2F*)(fin.Get("Ef_thetaf_AnodeQQQR_TC1_PC1_pidlow0_1"));
|
|
// TFile fin("run15_sx3_qqq_alphas_kinematic.root");
|
|
TH2F *h2 = (TH2F*)(fin.Get("proton+misc_cathode_alphas/pmisc_Ef_vs_theta_qqq_cathode_alphas"));
|
|
h2->Draw("col");
|
|
h2->RebinY(8);
|
|
kinematics.Draw("L SAME");
|
|
gPad->Modified();
|
|
gPad->Update();
|
|
while(gPad->WaitPrimitive());
|
|
|
|
gPad->SaveAs("c1.png");
|
|
|
|
}
|