Jpp test-rotations-old
the software that should make you happy
Loading...
Searching...
No Matches
JProperties.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# Example script for JProperties
11#
12# ------------------------------------------------------------------------------------------
13
14
15if [ -z $JPP_DIR ]; then
16 echo "Variable JPP_DIR undefined."
17 exit
18fi
19
20
21source $JPP_DIR/setenv.sh $JPP_DIR
22
23
24set_variable INPUT_FILE $JPP_DATA/genhen.km3net_wpd_V2_0.evt
25
26if do_usage $*; then
27 usage "$script [input file]"
28fi
29
30case $# in
31 1) set_variable INPUT_FILE $1;;
32esac
33
34print_variable INPUT_FILE
35
36JProperties -f $INPUT_FILE
37
38echo -n "Number of events "
39grep -E "start_event:" $INPUT_FILE | wc -l