# HG changeset patch # User Iannis # Date 1571987933 -10800 # Node ID a0bf7d88b1dc33aa7f655a443f631c016556fa70 # Parent 12c895b99a3ca03565ad1a36653d7bc16be041d0 Fixing bug in reading number of shots for each channel. diff -r 12c895b99a3c -r a0bf7d88b1dc atmospheric_lidar/licel.py --- a/atmospheric_lidar/licel.py Tue Oct 22 17:46:48 2019 +0300 +++ b/atmospheric_lidar/licel.py Fri Oct 25 10:18:53 2019 +0300 @@ -422,7 +422,7 @@ self.raw_info.append(file_channel.raw_info) self.duration.append(file_channel.duration) - self.laser_shots.append(file_channel.laser_shots) + self.laser_shots.append(file_channel.number_of_shots) self.discriminator.append(file_channel.discriminator) self.hv.append(file_channel.hv)