Imported the ascii file output by the modified GEANT4 example I'm working with into a google spreadsheet. Manually sorted it by PMTNumber, manually added 0 photon counts for the missing PMTNumbers, exported the resulting photon counts into Octave as:
data = load ("Run-PMTHitOrder-PhotonCount-PMTNumber.csv")
for i = 1:8
for j = 1:8
matrixed_data(i,j)=data((i-1)*8+j,3);
endfor
endfor
my_bar3(matrixed_data)
plotted it using this octave version of bar3:
data = load ("Run-PMTHitOrder-PhotonCount-PMTNumber.csv")
for i = 1:8
for j = 1:8
matrixed_data(i,j)=data((i-1)*8+j,3);
endfor
endfor
my_bar3(matrixed_data)
plotted it using this octave version of bar3:
No comments:
Post a Comment