#!/bin/sh

cat > third_merge_check.stream << EOF
CrystFEL stream format 2.1
Command line: indexamajig -i dummy.lst -o dummy.stream --kraken=prawn
----- Begin chunk -----
Image filename: dummy.h5
photon_energy_eV = 2000.0
--- Begin crystal
Cell parameters 27.74398 27.84377 16.90346 nm, 88.53688 91.11774 118.75944 deg
astar = -0.0283891 +0.0149254 -0.0257273 nm^-1
bstar = -0.0068281 +0.0403989 -0.0005196 nm^-1
cstar = +0.0406926 +0.0052233 -0.0426520 nm^-1
Reflections measured after indexing
  h   k   l          I    phase   sigma(I)  counts  fs/px  ss/px
  1   0   0     100.00        -       0.00       1  938.0  629.0
End of reflections
--- End crystal
----- End chunk -----

----- Begin chunk -----
Image filename: dummy.h5
photon_energy_eV = 2000.0
--- Begin crystal
Cell parameters 27.74398 27.84377 16.90346 nm, 88.53688 91.11774 118.75944 deg
astar = -0.0283891 +0.0149254 -0.0257273 nm^-1
bstar = -0.0068281 +0.0403989 -0.0005196 nm^-1
cstar = +0.0406926 +0.0052233 -0.0426520 nm^-1
Reflections measured after indexing
  h   k   l          I    phase   sigma(I)  counts  fs/px  ss/px
  1   0   0     200.00        -       0.00       1  938.0  629.0
End of reflections
--- End crystal
----- End chunk -----

----- Begin chunk -----
Image filename: dummy.h5
photon_energy_eV = 2000.0
--- Begin crystal
Cell parameters 27.74398 27.84377 16.90346 nm, 88.53688 91.11774 118.75944 deg
astar = -0.0283891 +0.0149254 -0.0257273 nm^-1
bstar = -0.0068281 +0.0403989 -0.0005196 nm^-1
cstar = +0.0406926 +0.0052233 -0.0426520 nm^-1
Reflections measured after indexing
  h   k   l          I    phase   sigma(I)  counts  fs/px  ss/px
  1   0   0     100.00        -       0.00       1  938.0  629.0
End of reflections
--- End crystal
----- End chunk -----
EOF

cat > third_merge_check_ans.hkl << EOF
  h   k   l          I    phase   sigma(I)  counts  fs/px  ss/px
  1   0   0     133.36        -      27.22       3    0.0    0.0
End of reflections
EOF

src/process_hkl -i third_merge_check.stream -o third_merge_check.hkl
diff third_merge_check.hkl third_merge_check_ans.hkl
if [ $? -ne 0 ]; then
	exit 1
fi
rm -f third_merge_check.stream third_merge_check.hkl third_merge_check_ans.hkl
exit 0