trans_i.append(trans_j)
	path_i.append(path_j)
	yield_i.append(yield_j)

	x_i.append(x_j)
	label_i.append(label_j)



graphPath="E:\\btrzpil\\EMPIR\\Works\\model2\\analysisResult\\singBeam11\\graph"
xData=x_i

legendTitle="Coordinates"
xAxLabel="Distance [mm]"

graphName=baseFileName

graphs=Graphs(graphName+'sen')
graphs.plotSensitivity(xData,sen_i,xAxLabel,label_i,legendTitle,graphPath)

graphs=Graphs(graphName+'ioneff')
graphs.plotIonEfficency(xData,eff_i,xAxLabel,label_i,legendTitle,graphPath)

graphs=Graphs(graphName+'yield')
graphs.plotYield(xData,yield_i,xAxLabel,label_i,legendTitle,graphPath)

graphs=Graphs(graphName+'path')
graphs.plotMeanPathLengthPrimaryParticles(xData,path_i,xAxLabel,label_i,legendTitle,graphPath)

graphs=Graphs(graphName+'transeff')
graphs.plotTransmissionEfficency(xData,trans_i,xAxLabel,label_i,legendTitle,graphPath)