File indexing completed on 2025-04-04 08:05:04
0001 {
0002 gROOT->Reset();
0003 gROOT->SetStyle("Plain");
0004 gStyle->SetOptStat(0);
0005
0006 Int_t ntarg = 5;
0007 Int_t npart = 4;
0008 Int_t nxs = 7;
0009
0010 Int_t ipart = 0;
0011 Int_t itarg = 0;
0012 Int_t ixs = 0;
0013
0014 TString axtit[3] = {"log10(E/MeV)", "Cross section (bn)","log10(p/GeV)"};
0015
0016 TString hed[nxs] = {"Elastic","Elastic","Inelastic","Inelastic","Capture","Fission","ChargeExchange"};
0017 TString fil0[nxs]= {"elp","el","inlp","inl","cap","fis","cex"};
0018 Double_t x1[nxs] = {-3,-1,-3,-1,-1,-1,-1};
0019 Double_t x2[nxs] = {5,6,5,6,6,6,6};
0020 Double_t y1[nxs] = {0.001,0.001,0.001,0.001,0.00001,0.00001,0.0001};
0021 Double_t y2[nxs] = {20,10,20,5,1,1,1};
0022 TLegend* leg[nxs];
0023 TH1F* hh[nxs];
0024 TString gtit, fin;
0025
0026 TFile ff[ntarg];
0027 TString targ[ntarg] = {"H","C","Al","Fe","Pb"};
0028 TString filt[ntarg] = {"h","c","al","fe","pb"};
0029 Int_t col[ntarg] = {2, 3, 4, 5, 6};
0030
0031 TString filp[npart] = {"p_","n_","pi+","pi-"};
0032 TString part[npart] = {"proton","neutron","#pi^{+}","#pi^{-}"};
0033
0034 }