Jpp 21.0.0-rc.1
the software that should make you happy
Loading...
Searching...
No Matches
JPrintPDG.sh
Go to the documentation of this file.
1#!/usr/bin/env zsh
2#
3# \author mdejong
4#
5version=1.0
6script=${0##*/}
7
8# ------------------------------------------------------------------------------------------
9#
10# Utility script to print PDFs.
11#
12# ------------------------------------------------------------------------------------------
13
14
15if [ -z $JPP_DIR ]; then
16 echo "Variable JPP_DIR undefined."
17 exit
18fi
19
20source $JPP_DIR/setenv.sh $JPP_DIR >& /dev/null
21
22T_NS=(-2.5 0.0 +2.5 10.0 50.0 100.0)
23
24if do_usage $*; then
25 usage "$script"
26fi
27
28for R in 10 50 100; do
29 for CD in 0.7 -0.7; do
30 for DIR in NORTH EAST SOUTH WEST; do
31 for type in 13 14; do
32 echo "$T_NS[*]" | JDrawPDG -F $type -D "${(P)DIR}" -R $R -c $CD
33 done
34 done
35 done
36done