I attached the link file between conex and epos
To tabulate the cross section (maproj/targ up to 250) using something like :
(See also  epos_conex.F)

     do ie=1,7
       engy=1.5*10.**(ie-1)
       if(engy.le.egymin)engy=egymin
       if(engy.ge.egymax)engy=egymax
       write(ifmt,*)'  AB xs   ',ie,engy
       if(ish.ge.1)
    &  write(ifch,*)'  AB xs   ',ie,engy
       do iia=1,7
         maproj=2**(iia-1)
         laproj=max(1,maproj/2)
       do iib=1,7
         matarg=2**(iib-1)
         latarg=max(1,matarg/2)
c          fctrmx=max(ftcrmxsave,float(max(maproj,matarg))) !to get stable pA and AA cross section, this number has to be large for large A
         ntevt=0
         nrevt=0
         pnll=-1.
         elab=-1.
         ecms=-1.
         ekin=-1.
         call conini
         call ainit
         nevent=10000
         if(maproj+matarg.eq.2)nevent=1
         call epocrossc(nevent,sigt,sigi,sigc,sige,sigql,sigd)
c do not count non-excited diffractive projectile in inelastic
         sigi3=sigi-sigql
         if(ish.ge.1)write (ifch,229)maproj,matarg,sigi,sigi3
229      format(2x,'simul.: nucleus-nucleus (',i3,'-',i3
    *       ,') cross sections:',/,4x,'gin,gin3=',2e10.3)
        write(ifmt,*)'  maproj,matarg,sigi,sigi3 :',maproj,matarg
    &                                               ,sigi,sigi3
         asect41(ie,iia,iib)=log(sigi)
         asect43(ie,iia,iib)=log(sigi3)

       enddo
     enddo
     enddo
