source: trunk/MagicSoft/Mars/mraw/MRawEvtData.cc@ 859

Last change on this file since 859 was 859, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 11.5 KB
Line 
1/* ======================================================================== *\
2!
3! *
4! * This file is part of MARS, the MAGIC Analysis and Reconstruction
5! * Software. It is distributed to you in the hope that it can be a useful
6! * and timesaving tool in analysing Data of imaging Cerenkov telescopes.
7! * It is distributed WITHOUT ANY WARRANTY.
8! *
9! * Permission to use, copy, modify and distribute this software and its
10! * documentation for any purpose is hereby granted without fee,
11! * provided that the above copyright notice appear in all copies and
12! * that both that copyright notice and this permission notice appear
13! * in supporting documentation. It is provided "as is" without express
14! * or implied warranty.
15! *
16!
17!
18! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de)
19!
20! Copyright: MAGIC Software Development, 2000-2001
21!
22!
23\* ======================================================================== */
24
25/////////////////////////////////////////////////////////////////////////////
26//
27// MRawEvtData
28//
29// Storage container to store the raw FADC values.
30//
31// MArrayS fHiGainPixId
32// ---------------------
33// Array of Pixel Numbers for their high voltage channel in the order the
34// FADC values are stored in fHiGainFadcSamples
35//
36// MArrayB fHiGainFadcSaples
37// -------------------------
38// FADC samples (hi gain) of all pixels
39//
40// MArrayS fLoGainPixId
41// --------------------
42// see fHiGainPixId
43//
44// MArrayB fLoGainFadcSamples
45// --------------------------
46// see fHiGainFadcSaples
47//
48/////////////////////////////////////////////////////////////////////////////
49
50#include "MRawEvtData.h"
51
52#include <iomanip.h>
53
54#include <fstream.h>
55
56#include <TH1.h>
57#include <TGraph.h>
58#include <TArrayC.h>
59
60#include "MLog.h"
61#include "MArrayS.h"
62#include "MArrayB.h"
63#include "MRawRunHeader.h"
64
65ClassImp(MRawEvtData);
66
67// --------------------------------------------------------------------------
68//
69// Default constructor. It initializes all arrays with zero size.
70//
71MRawEvtData::MRawEvtData(const char *name, const char *title)
72{
73 *fName = name ? name : "MRawEvtData";
74 *fTitle = title ? title : "Raw Event Data Information";
75
76 InitArrays();
77}
78
79// --------------------------------------------------------------------------
80//
81// Destructor. Deletes all the arrays.
82//
83MRawEvtData::~MRawEvtData()
84{
85 DeleteArrays();
86}
87
88// --------------------------------------------------------------------------
89//
90// reset all arrays
91//
92void MRawEvtData::Clear(Option_t *)
93{
94 /*
95 FIXME:
96 Is Reset (set all entries to zero) what you want to do
97 or Set(0) (delete the array)
98 */
99 fHiGainPixId->Reset();
100 fLoGainPixId->Reset();
101 fHiGainFadcSamples->Reset();
102 fLoGainFadcSamples->Reset();
103}
104
105// --------------------------------------------------------------------------
106//
107// return the number of hi gain samples per pixel
108//
109Byte_t MRawEvtData::GetNumHiGainSamples() const
110{
111 return fHiGainPixId->GetSize() ? fHiGainFadcSamples->GetSize()/fHiGainPixId->GetSize() : 0;
112}
113
114// --------------------------------------------------------------------------
115//
116// return the number of lo gain samples per pixel
117//
118Byte_t MRawEvtData::GetNumLoGainSamples() const
119{
120 return fLoGainPixId->GetSize() ? fLoGainFadcSamples->GetSize()/fLoGainPixId->GetSize() : 0;
121}
122
123// --------------------------------------------------------------------------
124//
125// return the number of stored pixel
126//
127UShort_t MRawEvtData::GetNumPixels() const
128{
129 return fHiGainPixId->GetSize();
130}
131
132
133// --------------------------------------------------------------------------
134//
135// Print out the onformation to *fLog.
136// Options:
137// "hex" Prints the time slices hexadecimal (default)
138// "dec" Prints the time slices decimal
139//
140void MRawEvtData::Print(Option_t *opt)
141{
142 //
143 // print fadc inforation to screen
144 // Possible Options:
145 // - DEC: Print values decimal instead of hexadecimal (default)
146 //
147 const Byte_t nHiSamp = GetNumHiGainSamples();
148 const Byte_t nLoSamp = GetNumLoGainSamples();
149
150 const UShort_t nHiPix = fHiGainPixId->GetSize();;
151 const UShort_t nLoPix = fLoGainPixId->GetSize();;
152
153 fLog->unsetf(ios::showbase);
154
155 *fLog << dec;
156 *fLog << "HiGain: " << nHiPix << " Pixels with " << (Int_t)nHiSamp << " Samples" << endl;
157 *fLog << "LoGain: " << nLoPix << " Pixels with " << (Int_t)nLoSamp << " Samples";;
158
159 TString str(opt);
160 Int_t manip = str.Contains("dec", TString::kIgnoreCase);
161
162 Int_t l=0;
163 for (int i=0; i<nHiPix; i++)
164 {
165 *fLog << endl;
166 *fLog << " " << setfill(' ') << setw(3) << dec << i << ": ";
167 *fLog << (manip?dec:hex) << flush;
168
169 if (!manip)
170 *fLog << setfill('0');
171
172 for (int j=0; j<nHiSamp; j++)
173 {
174 *fLog << setw(manip?3:2);
175 *fLog << ((UShort_t)(*fHiGainFadcSamples)[j+i*nHiSamp]&0xff);
176 if (manip)
177 *fLog << ' ';
178 *fLog << flush;
179 }
180
181 if (!(l<nLoPix && (*fLoGainPixId)[l]==(*fHiGainPixId)[i]))
182 continue;
183
184 if (manip)
185 *fLog << "/ ";
186
187 for (int j=0; j<nLoSamp; j++)
188 {
189 *fLog << setw(manip?3:2);
190 *fLog << ((UShort_t)(*fLoGainFadcSamples)[j+i*nLoSamp]&0xff);
191 if (manip)
192 *fLog << ' ';
193 *fLog << flush;
194 }
195 l++;
196 }
197 *fLog << endl;
198}
199
200// --------------------------------------------------------------------------
201//
202// Draw a pixel. A Histogram or Graph is created and it's draw function is
203// called.
204// Options:
205// "GRAPH" A graph is drawn
206// "HIST" A histogram is drawn
207// number The pixel with the given number is drawn
208//
209void MRawEvtData::Draw(Option_t *opt)
210{
211 // ----- AppendPad(opt);
212
213 //
214 // FIXME: BIG MEMORY LEAK! (( How and when are the objects deleted?)
215 //
216
217 TString str(opt);
218
219 UInt_t num = 0;
220
221 if (str.BeginsWith("GRAPH", TString::kIgnoreCase))
222 {
223 if (str.Length()>5)
224 sscanf(&str[5], "%d", &num);
225
226 if (num>=GetNumPixels())
227 num= GetNumPixels();
228
229 *fLog << "Drawing Graph: Pixel #" << num << " of " << (int)GetNumPixels() << endl;
230
231 const Int_t n = GetNumHiGainSamples();
232
233 Float_t *x = new Float_t[n];
234 Float_t *y = new Float_t[n];
235
236 for (int i=0; i<n; i++)
237 {
238 x[i] = i;
239 y[i] = (*fHiGainFadcSamples)[i + num*GetNumHiGainSamples()];
240 }
241
242 TGraph *graph = new TGraph(n, x, y);
243 graph->SetMaximum (256) ;
244 graph->SetMinimum (0) ;
245
246 graph->SetBit(kCanDelete);
247 graph->Draw("AC*");
248
249 return;
250 }
251
252 if (str.BeginsWith("HIST", TString::kIgnoreCase))
253 {
254 *fLog << "Length: " << str.Length() << endl;
255
256 if (str.Length()>4)
257 sscanf(&str[4], "%d", &num);
258
259 if (num>=GetNumPixels())
260 num= GetNumPixels();
261
262 *fLog << "Drawing Histogram of Pixel " << num << endl;
263
264 const Int_t n = GetNumHiGainSamples();
265
266 char *name = new char[16];
267
268 sprintf(name, "Pixel No.%d", (*fHiGainPixId)[num]);
269
270 TH1F *hist = new TH1F(name, "Hi Gain Samples FADC", n, 0, n);
271
272 for (int i=0; i<n; i++)
273 hist->Fill(0.5+i, (*fHiGainFadcSamples)[i + num*GetNumHiGainSamples()]);
274
275 hist->SetBit(kCanDelete);
276 hist->Draw();
277
278 return;
279 }
280
281 *fLog << "MRawEvtData::Draw: Warning: You must specify either 'GRAPH' or 'HIST'" << endl;
282}
283
284// --------------------------------------------------------------------------
285//
286// Deletes all arrays describing the pixel Id and Samples in pixels.
287// The flag is for future usage.
288//
289void MRawEvtData::DeletePixels(Bool_t flag)
290{
291 DeleteArrays();
292 InitArrays(flag);
293}
294
295// --------------------------------------------------------------------------
296//
297// Deletes all the arrays
298//
299void MRawEvtData::DeleteArrays()
300{
301 delete fHiGainPixId;
302 delete fLoGainPixId;
303 delete fHiGainFadcSamples;
304 delete fLoGainFadcSamples;
305}
306
307// --------------------------------------------------------------------------
308//
309// Deletes all the arrays
310// The flag is for future usage.
311//
312void MRawEvtData::InitArrays(Bool_t flag)
313{
314 // const int npix = !flag ? 0 : fRunHeader->GetNumCrates()*fRunHeader->GetNumPixInCrate();
315
316 fHiGainPixId = new MArrayS(0);//npix);
317 fLoGainPixId = new MArrayS(0);//npix);
318 fHiGainFadcSamples = new MArrayB(0);//npix*fRunHeader->GetNumSamplesHiGain());
319 fLoGainFadcSamples = new MArrayB(0);//npix*fRunHeader->GetNumSamplesLoGain());
320}
321
322// --------------------------------------------------------------------------
323//
324// This is to fill the data of one pixel to the MRawEvtHeader Class.
325// The parameters are the pixelnumber and the FADC_SLICES values of ADCs
326// Add to lo gains if lflag = 1
327//
328void MRawEvtData::AddPixel(UShort_t nOfPixel, TArrayC *data, Bool_t lflag)
329{
330 MArrayS *arrpix = lflag ? fLoGainPixId : fHiGainPixId;
331 MArrayB *arrsam = lflag ? fLoGainFadcSamples : fHiGainFadcSamples;
332
333 //
334 // check whether we got the right number of new samples
335 // if there are no samples already stored: this is the new number of samples
336 //
337 const Byte_t ns = data->GetSize();
338 const Byte_t nSamp = lflag ? GetNumLoGainSamples() : GetNumHiGainSamples();
339 if (nSamp && ns!=nSamp)
340 {
341 *fLog << "RawEvtData::FillPixel: Error, number of samples in ";
342 *fLog << "TArrayC doesn't match actual number" << endl;
343 return;
344 }
345
346 //
347 // enhance pixel array by one
348 //
349 arrpix->Set(arrpix->GetSize()+1);
350
351 //
352 // add the number of the new pixel to the array as last entry
353 //
354 arrpix->AddAt(nOfPixel, arrpix->GetSize()-1);
355
356 //
357 // enhance the array by the number of new samples
358 //
359 arrsam->Set(arrsam->GetSize()+ns);
360
361 //
362 // add the new slices as last entries to array
363 //
364 arrsam->AddAt((Byte_t*)data->GetArray(), arrsam->GetSize()-ns, ns);
365}
366
367// --------------------------------------------------------------------------
368//
369// Fills members with information from a magic binary file.
370// WARNING: you have to use Init() before you can do this
371//
372void MRawEvtData::ReadEvt(istream &fin)
373{
374 const UShort_t nlo = fRunHeader->GetNumSamplesLoGain();
375 const UShort_t nhi = fRunHeader->GetNumSamplesHiGain();
376
377 const UShort_t npic = fRunHeader->GetNumPixInCrate();
378
379 //
380 // Enhance array by the size which we'll read now
381 //
382 const int npixhi = fHiGainPixId->GetSize();
383 const int npixlo = fLoGainPixId->GetSize();
384
385 fHiGainPixId->Set(npixhi+npic);
386 fLoGainPixId->Set(npixlo+npic);
387
388 const int nsamhi = fHiGainFadcSamples->GetSize();
389 const int nsamlo = fLoGainFadcSamples->GetSize();
390
391 fHiGainFadcSamples->Set(nsamhi+nhi*npic);
392 fLoGainFadcSamples->Set(nsamlo+nlo*npic);
393
394 Byte_t *higainsam = fHiGainFadcSamples->GetArray()+nsamhi;
395 Byte_t *logainsam = fLoGainFadcSamples->GetArray()+nsamlo;
396
397 for (int i=0; i<npic; i++)
398 {
399 //
400 // get the spiral pixel number from the run header
401 //
402 const UShort_t npix = fRunHeader->GetPixAssignment(i);
403
404 //
405 // This is to fill the data of one pixel to the MRawEvtHeader Class.
406 // The parameters are the pixelnumber and the FADC_SLICES values of ADCs
407 // Add to lo gains if lflag = 1
408 //
409 fHiGainPixId->AddAt(npix, npixhi+i);
410 fin.read(higainsam, nhi);
411 higainsam += nhi;
412
413 // FIXME: Not implemented in the raw files yet
414 //if (IsLoGainOn(i, j))
415 //{
416 fLoGainPixId->AddAt(npix, npixlo+i);
417 fin.read(logainsam, nlo);
418 logainsam += nlo;
419 //}
420 }
421}
422
Note: See TracBrowser for help on using the repository browser.