Jpp  18.0.0-rc.1
the software that should make you happy
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
compare-detector.sh
Go to the documentation of this file.
1 #!/bin/zsh
2 #
3 # \author mdejong
4 #
5 script=${0##*/}
6 
7 # ------------------------------------------------------------------------------------------
8 #
9 # Utility script to compare two binary formatted detector files.
10 #
11 # ------------------------------------------------------------------------------------------
12 
13 if [ -z $JPP_DIR ]; then
14  echo "Variable JPP_DIR undefined."
15  exit
16 fi
17 
18 source $JPP_DIR/setenv.sh $JPP_DIR >& /dev/null
19 
20 set_variable SKIP 48 # "####" + <length> + <UUID>
21 
22 if do_usage $*; then
23  usage "$script <detector file> <detector file>"\
24  "\nComparison of binary formatted detector files excluding UUID."
25 fi
26 
27 if (( $# != 2 )); then
28  fatal "Wrong number of arguments."
29 fi
30 
31 JConvertDetectorFormat -a $1 -o ${TMPDIR:-/tmp}/d1.datx -q
32 JConvertDetectorFormat -a $2 -o ${TMPDIR:-/tmp}/d2.datx -q
33 
34 tail -c+$SKIP ${TMPDIR:-/tmp}/d1.datx > ${TMPDIR:-/tmp}/da.datx
35 tail -c+$SKIP ${TMPDIR:-/tmp}/d1.datx > ${TMPDIR:-/tmp}/db.datx
36 
37 diff ${TMPDIR:-/tmp}/da.datx ${TMPDIR:-/tmp}/db.datx
38 
39 if (( $? == 0 )); then
40  echo "Detectors $1 and $2 are equal."
41 else
42  fatal "Detectors $1 and $2 differ."
43 fi
44 
45 rm -f ${TMPDIR:-/tmp}/d{1,2,a,b}.datx
46 
o $QUALITY_ROOT d $DEBUG!CHECK_EXIT_CODE JPlot1D f
Definition: JDataQuality.sh:76
usr share Modules init zsh export TMPDIR
exit
Definition: JPizza.sh:36
then fatal Wrong number of arguments fi JConvertDetectorFormat a o
then echo
then echo Variable JPP_DIR undefined exit fi source $JPP_DIR setenv sh $JPP_DIR &dev null set_variable
Definition: JAcoustics.sh:21
then JCalibrateToT a
Definition: JTuneHV.sh:116
* usage
$WORKDIR ev_configure_dqsimulator txt echo process $DQ_SIMULATOR $i $SOURCE_HOST[$index] csh c(setenv ROOTSYS $ROOTSYS &&source $JPP_DIR/setenv.csh $JPP_DIR &&($DQ_SIMULATOR\-u\$NAME\$\-H\$SERVER\$\-M\$LOGGER\$\-d $DEBUG</dev/null > &/dev/null &))'
then JMuonMCEvt f $INPUT_FILE o $INTERMEDIATE_FILE d
Definition: JMuonPath.sh:47
static JNullStream null
Null I/O stream.
Definition: JNullStream.hh:51
script
Definition: JAcoustics.sh:2