def process_events(self):
        print "Processing events..."
        attrs = self.data.root._v_attrs
        if 'is_processed' not in attrs or not attrs.is_processed:
            for station_id, station_group in enumerate(self.station_groups):
                process = ProcessEventsWithLINT(self.data, station_group)
                process.process_and_store_results(overwrite=True)

            attrs.is_processed = True
Example #2
0
    def process_events(self):
        print "Processing events..."
        attrs = self.data.root._v_attrs
        if 'is_processed' not in attrs or not attrs.is_processed:
            for station_id, station_group in enumerate(self.station_groups):
                process = ProcessEventsWithLINT(self.data, station_group)
                process.process_and_store_results(overwrite=True)

            attrs.is_processed = True
Example #3
0
    def process_events(self):
        attrs = self.data.root._v_attrs
        for station_id, station_group in enumerate(self.station_groups):
            process = ProcessEventsWithLINT(self.data, station_group)
            if 'is_processed' not in attrs or not attrs.is_processed:
                process.process_and_store_results()
            offsets = process.determine_detector_timing_offsets()
            print "Offsets for station %d: %s" % (station_id, offsets)

        attrs.is_processed = True
    def process_events(self):
        attrs = self.data.root._v_attrs
        for station_id, station_group in enumerate(self.station_groups):
            process = ProcessEventsWithLINT(self.data, station_group)
            if 'is_processed' not in attrs or not attrs.is_processed:
                process.process_and_store_results()
            offsets = process.determine_detector_timing_offsets()
            print "Offsets for station %d: %s" % (station_id, offsets)

        attrs.is_processed = True