lepto6_dis1000_q2.py (raw text file)
# HepSim script using DataMelt http://jwork.org/dmelt
# Part of =HepMC= : https://atlaswww.hep.anl.gov/asc/hepsim/
# S.Chekanov (ANL)
from java.lang import *
from proto import FileMC   # import FileMC
from jhplot.utils import FileList
from java.awt import Color,Font
from jhplot import  HPlot,HPlot3D,P1D,HLabel,H2D,H1D
from jhplot.io import HBook
from hephysics.particle import LParticle 
from hepsim import HepSim
import sys

url="";  Nfiles=10 # 2 files to process for checking 
default_www="http://mc.hep.anl.gov/asc/hepsim/events/ep/141gev/lepto6_dis1000q2/"
if len(sys.argv)>1:
   if sys.argv[1].startswith("http"):
              flist=HepSim.getList(sys.argv[1])
              url=sys.argv[1]
   else: 
       flist=FileList.get(sys.argv[1],"promc")
   if (len(sys.argv)>2): TotalEvents=int(sys.argv[2])
else:
   url=default_www; flist=HepSim.getList(url)
if len(flist)==0: print "Error: No input file!"; sys.exit(0)
else: print "Found "+str(len(flist))+" files. Nr files to process= ",Nfiles

h1= H1D("Q2 cross section",100,1000,20000)  
#h1.doc()               # check its methods

cross=0; nev=0;  # Nfiles=len(flist)
for m in range(Nfiles):             # loop over all files in this list    
   file=FileMC(url+flist[m])        # get input file
   header = file.getHeader()
   un=float(header.getMomentumUnit()) # conversion units
   lunit=float(header.getLengthUnit())
   if m==0:
       print "ProMC v=",file.getVersion(), "M unit=",un,"L unit=",lunit 
   for i in range(file.size()):
      nev=nev+1
      if (nev%100==0):
           if (Nfiles==1): print "Event=",nev
           else: print "Event=",nev," done=",int((100.0*m)/Nfiles),"%"
      eve = file.read(i)
      pa = eve.getParticles()    # particle information
      ve = eve.getEvent()       # event information
      W=ve.getScale()       # encoded  W
      Y=ve.getAlphaQED()    # encodded Y 
      X=ve.getAlphaQCD()    # x-Bj
      Q2=ve.getScalePDF() # Q2
      #print "Q2=",Q2," W=",W," Xbj=",X
      #h1.fill(X,Q2)
      h1.fill(Q2)
# Fill particles
#      for j in range(pa.getPxCount()): 
#         if (abs(pa.getPdgId(j))==11 or abs(pa.getPdgId(j))==13 or abs(pa.getPdgId(j))==15):
#             p=LParticle(pa.getPx(j)/un,pa.getPy(j)/un,pa.getPz(j)/un,pa.getEnergy(j)/un)
#             h1.fill(p.perp())
 
   stat = file.getStat()
   cross=stat.getCrossSectionAccumulated()
   erro=stat.getCrossSectionErrorAccumulated();
   file.close()

lumi=nev/cross;
print "Lumi=%.3e pb"%lumi
print "Total cross section (pb)=",cross
c1=HPlot()
c1.setMarginLeft(100)
c1.setNameX("Q^{2} [GeV^{2}]")
c1.setNameY("d σ / dQ2  [pb/GeV]")
c1.visible(True)
c1.setLogScale(0,True)
c1.setLogScale(1,True)
c1.setRangeX(1000,20000)
c1.setRangeY(0.00000001,100)

hNew=h1.getDividedByBinWidth()
hNew.scale(1.0/lumi)
xsec=P1D(hNew)
xsec.setErr(1)       # show errors
xsec.setColor(Color.blue)
c1.draw(xsec)

l1=HLabel("DIS Q^{2}>100 GeV^{2}  σ=%.3e pb"%cross, 0.35, 0.75, "NDC")
l1.setFont(Font("Helvetica", Font.PLAIN, 14))
c1.add(l1)
l2=HLabel("=HepSim=",0.79,0.87, "NDC")
l2.setColor(Color.gray)
l2.setFont(Font("Helvetica", Font.PLAIN, 14))
c1.add(l2)

c1.update()


# create file/image using name of the file
name="output"
if len(sys.argv[0])>0: name=sys.argv[0].replace(".py","")
f=HBook(name+".jdat","w"); print name+".jdat created"
f.write(xsec)
f.close()
c1.export(name+".svg");    print name+".svg created"
# xsec.toFile(name+".txt");  print name+".txt created"
# sys.exit(0)