From 31f64be839f274beff63847661196b188bb8f8df Mon Sep 17 00:00:00 2001
From: zineb aly <aly.zineb.az@gmail.com>
Date: Wed, 15 Apr 2020 12:18:11 +0200
Subject: [PATCH] remove old DAQ doc file

---
 examples/plot_example.py | 27 ---------------------------
 1 file changed, 27 deletions(-)
 delete mode 100644 examples/plot_example.py

diff --git a/examples/plot_example.py b/examples/plot_example.py
deleted file mode 100644
index 4f662b7..0000000
--- a/examples/plot_example.py
+++ /dev/null
@@ -1,27 +0,0 @@
-"""
-Reading DAQ Data
-================
-
-The following example shows how to access hits in a ROOT file which is coming
-from the detector and written by the `JDataWriter` application.
-
-Such a file is usually called "KM3NET_00000001_00000002.root", where the first
-number is the detector ID and the second the run number.
-"""
-import km3io
-
-#####################################################
-# Accessing the event tree
-# ------------------------
-# Just pass a filename to the reader class and get access to the event tree
-# with:
-
-f = km3io.OnlineReader("samples/daq_v1.0.0.root")
-
-#####################################################
-# Note that only some meta information is read into memory.
-#
-# Printing it will simply tell you how many events it has found. Again, nothing
-# else is read yet:
-
-print(f.events)
-- 
GitLab