blob: 525f39524bb330e2bda2fbccf075d00033dd10cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Find multiple crystal hits
#
# Copyright © 2017-2020 Deutsches Elektronen-Synchrotron DESY,
# a research centre of the Helmholtz Association.
#
# Author:
# 2017 Thomas White <taw@physics.org>
#
import sys
from collections import deque
f = open(sys.argv[1], 'r')
n_crystals = 0
crystal = deque()
in_crystal = 0
while True:
fline = f.readline()
if not fline:
break
fline = fline.rstrip("\r\n")
if fline.find("Image filename") != -1:
filename = fline
if fline.find("Event") != -1:
event = fline
if fline.find("End chunk") != -1:
if n_crystals > 1:
print("\nFilename: "+filename)
print("Event: "+event)
for line in crystal:
print(line)
if fline.find("Begin chunk") != -1:
n_crystals = 0
filename = ""
event = ""
crystal.clear()
if fline.find("Begin crystal") != -1:
n_crystals += 1
if fline.find("Cell param") != -1:
in_crystal = 1
if in_crystal:
crystal.append(fline)
if fline.find("unique_axis") != -1:
in_crystal = 0
|