Jpp
JDAQTimeslice.sh
Go to the documentation of this file.
1 #!/bin/zsh
2 #
3 # \author mdejong
4 #
5 version=1.0
6 script=${0##*/}
7 
8 # ------------------------------------------------------------------------------------------
9 #
10 # Example script for JDAQTimeslice.
11 #
12 # ------------------------------------------------------------------------------------------
13 
14 
15 if [ -z $JPP_DIR ]; then
16  echo "Variable JPP_DIR undefined."
17  exit
18 fi
19 
20 
21 source $JPP_DIR/setenv.sh $JPP_DIR
22 
23 
24 set_variable DEBUG 2
25 set_variable WORKDIR /tmp/
26 define_variable INPUT_FILE
27 set_variable OUTPUT_FILE histogram.root
28 
29 if ( do_usage $* ); then
30  usage "$script [input file [output file]]"
31 fi
32 
33 case $# in
34  2) set_variable OUTPUT_FILE $2;&
35  1) set_variable INPUT_FILE $1;;
36  *) fatal "Wrong number of arguments."
37 esac
38 
39 if (( 1 )); then
40 
41  print_variable INPUT_FILE OUTPUT_FILE
42  check_input_file $INPUT_FILE
43 
44  timer_start
45 
46  $JPP_DIR/examples/JDAQ/JDAQTimeslice \
47  -f $INPUT_FILE \
48  -o $OUTPUT_FILE \
49  -d $DEBUG
50 
51  timer_stop
52  timer_print
53 
54 fi
55 
56 
57 if (( 1 )); then
58 
59  JPlot1D \
60  -f ${OUTPUT_FILE}:h0 \
61  -> "PMT" \
62  -\^ "number of events [a.u.]" \
63  -T "" -LTR
64 
65  JPlot1D \
66  -f ${OUTPUT_FILE}:h1 \
67  -> "time-over-threshold [ns]" \
68  -\^ "number of events [a.u.]" \
69  -T "" -LTR
70 
71  JPlot1D \
72  -w 800x400 \
73  -f ${OUTPUT_FILE}:h2 \
74  -> "time [ns]" \
75  -\^ "number of events [a.u.]" \
76  -T "" -LTR
77 
78 
79 fi