<p>Strips 1-16 dE.</p>
<p>Strip 8 is not working. Strip 16 is drowing the 10B peak in noise. All others look ok. The low energy peak around channel 300 in visible in some strips may be the Li recoil. The main peak around channel 800 is 10B(n,alpha_1) at around 1.3 MeV. The alpha_0 channel should be at around 1.8 MeV. There seem to be two small peaks above the alpha_1 peak. not sure why.</p>
<p> </p>
<p>Plotted using:</p>
<p> </p>
<p>void plotfile(){</p>
<p> TFile *f=new TFile("run219173_B_ded.root","read");</p>
<p> </p>
<p> Char_t s[256];</p>
<p> </p>
<p> TH1D **hamps;</p>
<p> hamps=new TH1D*[17];</p>
<p> </p>
<p> //creating histograms for each strip</p>
<p> for(int u=0;u<=16;u++){</p>
<p> sprintf(s, "hamp_%d",u);</p>
<p> hamps[u]=(TH1D*)f->Get(s);</p>
<p> }</p>
<p> TCanvas *c=new TCanvas();</p>
<p> c->Divide(4,4);</p>
<p> </p>
<p> for(int u=1;u<=16;u++){</p>
<p> c->cd(u);</p>
<p> c->SetLogy();</p>
<p> hamps[u]->GetXaxis()->SetRangeUser(0,2000);</p>
<p> hamps[u]->GetYaxis()->SetRangeUser(0,50);</p>
<p> hamps[u]->DrawCopy();</p>
<p> </p>
<p> }</p>
<p>}</p>
<p>*********</p>
<p> </p> |