source: fact/tools/pyscripts/sandbox/vogler/DRS_End_Noise_RMS_2.py@ 20115

Last change on this file since 20115 was 14173, checked in by vogler, 12 years ago
inital filling of my sandbox
  • Property svn:executable set to *
File size: 4.2 KB
Line 
1#!/usr/bin/python -tt
2# ********************************
3# Test script for the CalFits class
4#
5# written by Thomas Kraehenbuehl, ETH Zurich
6# tpk@phys.ethz.ch, +41 44 633 3973
7# April 2012
8# ********************************
9#
10# modified and adapted py Patrick Vogler
11#
12# ################################
13from ROOT import gSystem
14gSystem.Load("calfactfits_h.so") # according to new naming scheme
15from ROOT import *
16
17
18
19
20
21
22
23#define filenames
24
25# 2011 12 05
26calibfilename = '/fact/raw/2011/12/05/20111205_011.drs.fits.gz' # NROI 300, pedestal
27
28datafilename = '/fact/raw/2011/12/05/20111205_022.fits.gz' # NROI 300, 5 minutes physics data with
29
30
31import numpy as np
32from scipy import weave
33from scipy.weave import converters
34
35from plotters import Plotter # ADC display
36# from plotters import CamPlotter # event display
37#from drs_spikes import DRSSpikes
38
39
40print "Testing object creation: "
41caltest = CalFactFits(datafilename, calibfilename)
42npcalevent = np.empty( caltest.npix * caltest.nroi, np.float64) #.reshape(caltest.npix ,caltest.nroi)
43caltest.SetNpcaldataPtr(npcalevent)
44
45
46numroi = np.int64(caltest.nroi)
47numpix = np.int64(caltest.npix)
48numevents = np.int64(caltest.nevents)
49
50num_LP_ev = 0 # number of ext Lightpulser events
51num_ped = 0 # number of pedestal events
52
53
54print "Common variables run information: "
55print "ROI: ", numroi
56print "#Pix: ", numpix
57print "Number of events: ", numevents
58print
59
60
61event = np.zeros((numpix, numroi)) # create an array to store an event in the format numpix * numroi (2-dim array)
62print "Array event created"
63run_average = np.zeros((numpix, numroi)) # create an array to store the "average event" of a run
64data_average_run = np.zeros(numroi)
65print "Arrays created "
66
67
68print "... looping..."
69
70while caltest.GetCalEvent(): # Loop ueber alle events
71 # print npcalevent ## Daten, Array 1 dim Laenge caltest.npix * caltest.nroi 1 Event
72
73
74 if (caltest.event_triggertype == 4): #ext LP event
75 print 'event id:', caltest.event_id, ' Trigger Type:', caltest.event_triggertype
76 num_LP_ev = num_LP_ev + 1
77 event = np.reshape(npcalevent, (numpix, -1)) # bring the event the shape numpix * numroi (2-dim array)
78 run_average += event**2
79
80print "Looped ... "
81
82run_average = run_average/num_LP_ev
83run_average = np.sqrt(run_average)
84
85
86
87for i in range (0, (numpix - 1) ):
88 data_average_run += run_average[i]**2
89print "Looped second loop "
90data_average_run = data_average_run/numpix
91data_average_run = np.sqrt(data_average_run)
92
93
94
95
96
97del caltest
98print "caltest deleted "
99
100
101
102print "Common variables run information: "
103print "ROI: ", numroi
104print "#Pix: ", numpix
105print "Number of events: ", numevents
106print "Number of external Lightpulser events: ", num_LP_ev
107print "Number of pedestal: ", num_ped
108print
109
110
111
112#####################################################################################################################
113print "creating plotters ..."
114
115#make a Plotter class ... this is an easy way for plotting ... but there are
116# many was to plot data ... without this class ... it was written for convenience, but there is no strong reason to use it...
117#myplotter = Plotter('titel of the plot', xlabel='time in slices', ylabel='amplitude calibrated data ... in mV')
118
119myplotter = Plotter('titel of the plot', xlabel='time in slices', ylabel='amplitude calibrated data ... in mV')
120myplotter2 = Plotter('titel of the plot', xlabel='time in slices', ylabel='amplitude calibrated data ... in mV')
121#myplotter3 = Plotter('titel of the plot', xlabel='time in slices', ylabel='amplitude calibrated data ... in mV')
122
123myplotter4 = Plotter('titel of the plot', xlabel='time in slices', ylabel='amplitude calibrated data ... in mV')
124
125print "Plotters created "
126###################################################################################################################
127
128myplotter(run_average[20], 'pix 20, average' )
129
130myplotter2(run_average[21], 'pix 21, average' )
131
132#myplotter3((run_average[22]) / num_LP_ev, 'pix 22, average' )
133
134#myplotter3(data_average_run / (numpix * num_LP_ev), 'average signal (all pixel) over the whole run' )
135
136myplotter4(data_average_run , 'RMS (all pixel) over the whole run' )
137
138
139answer = raw_input('type "quit" to quit ')
140while not 'quit' in answer:
141 answer = raw_input('type "quit" to quit ')
142
Note: See TracBrowser for help on using the repository browser.