Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-05-14 09:13:43

0001 #!/bin/bash
0002 
0003 set -e # Exit on fail
0004 set -x # Print each command
0005 
0006 jana -Pplugins=JTest \
0007     -Pnthreads=Ncores \
0008     -Pjana:nevents=200 \
0009     -Pjana:log:show_threadstamp=1 \
0010     -Pjana:loglevel=debug \
0011     -Pjtest:plotter:cputime_ms=40 \
0012     -Pjtest:use_legacy_plotter=0 >log_new.txt
0013 
0014 jana -Pplugins=JTest \
0015     -Pnthreads=Ncores \
0016     -Pjana:nevents=200 \
0017     -Pjana:log:show_threadstamp=1 \
0018     -Pjana:loglevel=debug \
0019     -Pjtest:plotter:cputime_ms=40 \
0020     -Pjtest:use_legacy_plotter=1 >log_old.txt
0021 
0022 jana-plot-utilization.py log_old.txt timeline_old.svg
0023 jana-plot-utilization.py log_new.txt timeline_new.svg