source: trunk/MagicSoft/Mars/mimage/MImgCleanStd.cc@ 2132

Last change on this file since 2132 was 2099, checked in by moralejo, 22 years ago
*** empty log message ***
File size: 25.7 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 <mailto:tbretz@astro.uni-wuerzburg.de>
19! Author(s): Harald Kornmayer, 1/2001
20! Author(s): Nadia Tonello, 4/2003 <mailto:tonello@mppmu.mpg.de>
21!
22! Copyright: MAGIC Software Development, 2000-2003
23!
24!
25\* ======================================================================== */
26
27/////////////////////////////////////////////////////////////////////////////
28//
29// MImgCleanStd
30//
31// The Image Cleaning task selects the pixels you use for the Hillas
32// parameters calculation.
33//
34// There are two methods to make the selection: the standard one, as done
35// in the analysis of CT1 data, and the democratic one, as suggested by
36// W.Wittek. The number of photo-electrons of a pixel is compared with the
37// pedestal RMS of the pixel itself (standard method) or with the average
38// RMS of the inner pixels (democratic method).
39// In both cases, the possibility to have a camera with pixels of
40// different area is taken into account.
41// The too noisy pixels can be recognized and eventally switched off
42// (Unmap: set blind pixels to UNUSED) separately, using the
43// MBlindPixelCalc Class. In the MBlindPixelCalc class there is also the
44// function to replace the value of the noisy pixels with the interpolation
45// of the content of the neighbors (SetUseInterpolation).
46//
47// Example:
48// ...
49// MBlindPixelCalc blind;
50// blind.SetUseInterpolation();
51// blind.SetUseBlindPixels();
52//
53// MImgCleanStd clean;
54// ...
55// tlist.AddToList(&blind);
56// tlist.AddToList(&clean);
57//
58// Look at the MBlindPixelCalc Class for more details.
59//
60// Starting point: default values ----------------------------------------
61//
62// When an event is read, before the image cleaning, all the pixels that
63// are in MCerPhotEvt are set as USED and NOT CORE. All the pixels belong
64// to RING number 1 (like USED pixels).
65// Look at MCerPhotPix.h to see how these informations of the pixel are
66// stored.
67// The default cleaning METHOD is the STANDARD one and the number of the
68// rings around the CORE pixel it analyzes is 1. Look at the Constructor
69// of the class in MImgCleanStd.cc to see (or change) the default values.
70//
71// Example: To modify this setting, use the member functions
72// SetMethod(MImgCleanStd::kDemocratic) and SetCleanRings(UShort_t n).
73//
74// MImgCleanStd:CleanStep1 -----------------------------------------------
75//
76// The first step of cleaning defines the CORE pixels. The CORE pixels are
77// the ones which contain the informations about the core of the electro-
78// magnetic shower.
79// The ratio (A_0/A_i) is calculated from fCam->GetPixRatio(i). A_0 is
80// the area of the central pixel of the camera, A_i is the area of the
81// examined pixel. In this way, if we have a MAGIC-like camera, with the
82// outer pixels bigger than the inner ones, the level of cleaning in the
83// two different regions is weighted.
84// This avoids problems of deformations of the shower images.
85// The signal S_i and the pedestal RMS Prms_i of the pixel are called from
86// the object MCerPhotPix.
87// If (default method = kStandard)
88//Begin_Html
89//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="images/MImgCleanStd-f1.png">
90//End_Html
91// the pixel is set as CORE pixel. L_1 (n=1) is called "first level of
92// cleaning" (default: fCleanLvl1 = 3).
93// All the other pixels are set as UNUSED and belong to RING 0.
94// After this point, only the CORE pixels are set as USED, with RING
95// number 1.
96//
97// MImgCleanStd:CleanStep2 ----------------------------------------------
98//
99// The second step of cleaning looks at the isolated CORE pixels and sets
100// them to UNUSED. An isolated pixel is a pixel without CORE neighbors.
101// At the end of this point, we have set as USED only CORE pixels with at
102// least one CORE neighbor.
103//
104// MImgCleanStd:CleanStep3 ----------------------------------------------
105//
106// The third step of cleaning looks at all the pixels (USED or UNUSED) that
107// surround the USED pixels.
108// If the content of the analyzed pixel survives at the second level of
109// cleaning, i.e. if
110//Begin_Html
111//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="images/MImgCleanStd-f1.png">
112//End_Html
113// the pixel is set as USED. L_2 (n=2) is called "second level of cleaning"
114// (default:fCleanLvl2 = 2.5).
115//
116// When the number of RINGS to analyze is 1 (default value), only the
117// pixels that have a neighbor CORE pixel are analyzed.
118//
119// There is the option to decide the number of times you want to repeat
120// this procedure (number of RINGS analyzed around the core pixels = n).
121// Every time the level of cleaning is the same (fCleanLvl2) and the pixel
122// will belong to ring r+1, 1 < r < n+1. This is described in
123// MImgCleanStd:CleanStep4 .
124//
125// Dictionary and member functions ---------------------------------------
126//
127// Here there is the detailed description of the member functions and of
128// the terms commonly used in the class.
129//
130// STANDARD CLEANING:
131// =================
132// This is the method used for the CT1 data analysis. It is the default
133// method of the class.
134// The number of photo-electrons of a pixel (S_i) is compared to the
135// pedestal RMS of the pixel itself (Prms_i). To have the comparison to
136// the same photon density for all the pixels, taking into account they
137// can have different areas, we have to keep in mind that the number of
138// photons that hit each pixel, goes linearly with the area of the pixel.
139// The fluctuations of the LONS are proportional to sqrt(A_i), so when we
140// compare S_i with Prms_i, only a factor sqrt(A_0/A_i) is missing to
141// have the same (N.photons/Area) threshold for all the pixels.
142//
143// !!WARNING: if noise independent from the
144// pixel size (example: electronic noise) is introduced,
145// then the noise fluctuations are no longer proportional
146// to sqrt(A_i), and then the cut value (for a camera with
147// pixels of different sizes) resulting from the above
148// procedure would not be proportional to pixel size as we
149// intend. In that case, democratic cleaning is preferred.
150//
151// If
152//Begin_Html
153//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="images/MImgCleanStd-f1.png">
154//End_Html
155// the pixel survives the cleaning and it is set as CORE (when L_n is the
156// first level of cleaning, fCleanLvl1) or USED (when L_n is the second
157// level of cleaning, fCleanLvl2).
158//
159// Example:
160//
161// MImgCleanStd clean;
162// //creates a default Cleaning object, with default setting
163// ...
164// tlist.AddToList(&clean);
165// // add the image cleaning to the main task list
166//
167// DEMOCRATIC CLEANING:
168// ===================
169// You use this cleaning method when you want to compare the number of
170// photo-electons of each pixel with the average pedestal RMS
171// (fInnerNoise = fSgb->GetSigmabarInner()) of the inner pixels (for the
172// MAGIC camera they are the smaller ones):
173//Begin_Html
174//&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<img src="images/MImgCleanStd-f2.png">
175//End_Html
176// In this case, the simple ratio (A_0/A_i) is used to weight the level of
177// cleaning, because both the inner and the outer pixels (that in MAGIC
178// have a different area) are compared to the same pedestal RMS, coming
179// from the inner pixels.
180// To calculate the average pedestal RMS of the inner pixels, you have to
181// add to the main task list an object of type MSigmabarCalc before the
182// MImgCleanStd object. To know how the calculation of fInnerNoise is done
183// look at the MSigmabarCalc Class.
184//
185// Example:
186//
187// MSigmabarCalc sbcalc;
188// //creates an object that calcutates the average pedestal RMS
189// MImgCleanStd clean;
190// ...
191// tlist.AddToList(&sbcalc);
192// tlist.AddToList(&clean);
193//
194// Member Function: SetMethod()
195// ============================
196// When you call the MImgCleanStd task, the default method is kStandard.
197//
198// If you want to switch to the kDemocratic method you have to
199// call this member function.
200//
201// Example:
202//
203// MImgCleanStd clean;
204// //creates a default Cleaning object, with default setting
205//
206// clean.SetMethod(MImgCleanStd::kDemocratic);
207// //now the method of cleaning is changed to Democratic
208//
209// FIRST AND SECOND CLEANING LEVEL
210// ===============================
211// When you call the MImgCleanStd task, the default cleaning levels are
212// fCleanLvl1 = 3, fCleanLvl2 = 2.5. You can change them easily when you
213// create the MImgCleanStd object.
214//
215// Example:
216//
217// MImgCleanStd clean(Float_t lvl1,Float_t lvl2);
218// //creates a default cleaning object, but the cleaning levels are now
219// //lvl1 and lvl2.
220//
221// RING NUMBER
222// ===========
223// The standard cleaning procedure is such that it looks for the
224// informations of the boundary part of the shower only on the first
225// neighbors of the CORE pixels.
226// There is the possibility now to look not only at the firs neighbors
227// (first ring),but also further away, around the CORE pixels. All the new
228// pixels you can find with this method, are tested with the second level
229// of cleaning and have to have at least an USED neighbor.
230//
231// They will be also set as USED and will be taken into account during the
232// calculation of the image parameters.
233// The only way to distinguish them from the other USED pixels, is the
234// Ring number, that is bigger than 1.
235//
236// Example: You can decide how many rings you want to analyze using:
237//
238// MImgCleanStd clean;
239// //creates a default cleaning object (default number of rings =1)
240// clean.SetCleanRings(UShort_t r);
241// //now it looks r times around the CORE pixels to find new pixels with
242// //signal.
243//
244//
245// Input Containers:
246// MGeomCam, MCerPhotEvt, MSigmabar
247//
248// Output Containers:
249// MCerPhotEvt
250//
251/////////////////////////////////////////////////////////////////////////////
252#include "MImgCleanStd.h"
253
254#include <stdlib.h> // atof
255#include <fstream.h> // ofstream, SavePrimitive
256
257#include <TGFrame.h> // TGFrame
258#include <TGLabel.h> // TGLabel
259#include <TGTextEntry.h> // TGTextEntry
260
261#include "MLog.h"
262#include "MLogManip.h"
263
264#include "MParList.h"
265#include "MGeomPix.h"
266#include "MGeomCam.h"
267#include "MCerPhotPix.h"
268#include "MCerPhotEvt.h"
269#include "MSigmabar.h"
270
271#include "MGGroupFrame.h" // MGGroupFrame
272
273ClassImp(MImgCleanStd);
274
275enum {
276 kImgCleanLvl1,
277 kImgCleanLvl2
278};
279
280static const TString gsDefName = "MImgCleanStd";
281static const TString gsDefTitle = "Task to perform image cleaning";
282
283// --------------------------------------------------------------------------
284//
285// Default constructor. Here you can specify the cleaning method and levels.
286// If you don't specify them the 'common standard' values 3.0 and 2.5 (sigma
287// above mean) are used.
288// Here you can also specify how many rings around the core pixels you want
289// to analyze (with the fixed lvl2). The default value for "rings" is 1.
290//
291MImgCleanStd::MImgCleanStd(const Float_t lvl1, const Float_t lvl2,
292 const char *name, const char *title)
293 : fSgb(NULL), fCleaningMethod(kStandard), fCleanLvl1(lvl1),
294 fCleanLvl2(lvl2), fCleanRings(1)
295
296{
297 fName = name ? name : gsDefName.Data();
298 fTitle = title ? title : gsDefTitle.Data();
299
300 Print();
301}
302
303// --------------------------------------------------------------------------
304//
305// NT 28/04/2003: now the option to use the standard method or the
306// democratic method is implemented:
307//
308// KStandard: This method looks for all pixels with an entry (photons)
309// that is three times bigger than the noise of the pixel
310// (default: 3 sigma, clean level 1)
311//
312// --------------------------------------------------------------------------
313//
314// Returns the maximum Pixel Id (used for ispixused in CleanStep2)
315//
316Int_t MImgCleanStd::CleanStep1Std()
317{
318 const Int_t entries = fEvt->GetNumPixels();
319
320 Int_t max = entries;
321
322 //
323 // check the number of all pixels against the noise level and
324 // set them to 'unused' state if necessary
325 //
326 for (Int_t i=0; i<entries; i++ )
327 {
328 MCerPhotPix &pix = (*fEvt)[i];
329
330 const Int_t id = pix.GetPixId();
331
332 const Float_t entry = pix.GetNumPhotons();
333 const Float_t noise = pix.GetErrorPhot();
334 const Double_t ratio = TMath::Sqrt(fCam->GetPixRatio(id));
335
336 // COBB: '<=' to skip entry=noise=0
337 if (entry * ratio <= fCleanLvl1 * noise)
338 pix.SetPixelUnused();
339
340 if (id>max)
341 max = id;
342 }
343
344 return max;
345}
346
347// --------------------------------------------------------------------------
348//
349// NT 28/04/2003: now the option to use the standard method or the
350// democratic method is implemented:
351//
352// "KDemocratic": this method looks for all pixels with an entry (photons)
353// that is n times bigger than the noise of the mean of the
354// inner pixels (default: 3 sigmabar, clean level 1)
355//
356// Returns the maximum Pixel Id (used for ispixused in CleanStep2)
357//
358Int_t MImgCleanStd::CleanStep1Dem()
359{
360 const Int_t entries = fEvt->GetNumPixels();
361
362 Int_t max = entries;
363
364 //
365 // check the number of all pixels against the noise level and
366 // set them to 'unused' state if necessary
367 //
368 for (Int_t i=0; i<entries; i++ )
369 {
370 MCerPhotPix &pix = (*fEvt)[i];
371
372 const Int_t id = pix.GetPixId();
373
374 const Float_t entry = pix.GetNumPhotons();
375 const Double_t ratio = fCam->GetPixRatio(id);
376
377 // COBB: '<=' to skip entry=noise=0
378 if (entry * ratio <= fCleanLvl1 * fInnerNoise)
379 pix.SetPixelUnused();
380
381 if (id>max)
382 max = id;
383 }
384 return max;
385}
386
387// --------------------------------------------------------------------------
388// The first step of cleaning defines the CORE pixels. All the other pixels
389// are set as UNUSED and belong to RING 0.
390// After this point, only the CORE pixels are set as USED, with RING
391// number 1.
392// Returns the maximum Pixel Id (used for ispixused in CleanStep2)
393//
394Int_t MImgCleanStd::CleanStep1()
395{
396 switch (fCleaningMethod)
397 {
398 case kStandard:
399 return CleanStep1Std();
400 case kDemocratic:
401 return CleanStep1Dem();
402 }
403
404 return 0;
405}
406
407// --------------------------------------------------------------------------
408//
409// Check if the survived pixel have a neighbor, that also
410// survived, otherwise set pixel to unused (removes pixels without
411// neighbors).
412//
413// Takes the maximum pixel id from CleanStep1 as an argument
414//
415void MImgCleanStd::CleanStep2(Int_t max)
416{
417 const Int_t entries = fEvt->GetNumPixels();
418
419 //
420 // In the worst case we have to loop 6 times 577 times, to
421 // catch the behaviour of all next neighbors. Here we can gain
422 // much by using an array instead of checking through all pixels
423 // (MCerPhotEvt::IsPixelUsed) all the time.
424 //
425 Byte_t *ispixused = new Byte_t[max+1];
426
427 for (Int_t i=0; i<entries; i++)
428 {
429 const MCerPhotPix &pix = (*fEvt)[i];
430 ispixused[pix.GetPixId()] = pix.IsPixelUsed() ? 1 : 0 ;
431 }
432
433 for (Int_t i=0; i<entries; i++)
434 {
435 // get entry i from list
436 MCerPhotPix &pix = (*fEvt)[i];
437
438 // get pixel id of this entry
439 const Int_t id = pix.GetPixId();
440
441 // check if pixel is in use, if not goto next pixel in list
442 if (ispixused[id] == 0)
443 continue;
444
445 // check for 'used' neighbors of this pixel
446 const MGeomPix &gpix = (*fCam)[id];
447 const Int_t nnmax = gpix.GetNumNeighbors();
448
449 Bool_t hasNeighbor = kFALSE;
450
451 //loop on the neighbors to check if they are used
452 for (Int_t j=0; j<nnmax; j++)
453 {
454 const Int_t id2 = gpix.GetNeighbor(j);
455
456 // when you find an used neighbor, break the loop
457 if (ispixused[id2] == 1)
458 {
459 hasNeighbor = kTRUE;
460 break;
461 }
462 }
463
464 if (hasNeighbor == kFALSE)
465 pix.SetPixelUnused();
466 }
467
468 delete ispixused;
469
470 //
471 // now we declare all pixels that survive as CorePixels
472 //
473 for (Int_t i=0; i<entries; i++)
474 {
475 MCerPhotPix &pix = (*fEvt)[i];
476
477 if (pix.IsPixelUsed())
478 pix.SetPixelCore();
479 }
480}
481
482// --------------------------------------------------------------------------
483//
484// Look for the boundary pixels around the core pixels
485// if a pixel has more than 2.5 (clean level 2.5) sigma, and
486// a core neigbor it is declared as used.
487//
488Bool_t MImgCleanStd::CleanStep3Std(const MCerPhotPix &pix)
489{
490 //
491 // get pixel id of this entry
492 //
493 const Int_t id = pix.GetPixId();
494
495 //
496 // check the num of photons against the noise level
497 //
498 const Float_t entry = pix.GetNumPhotons();
499 const Float_t noise = pix.GetErrorPhot();
500 const Double_t ratio = TMath::Sqrt(fCam->GetPixRatio(id));
501
502 return (entry * ratio <= fCleanLvl2 * noise);
503}
504
505// --------------------------------------------------------------------------
506//
507// Look for the boundary pixels around the core pixels
508// if a pixel has more than 2.5 (clean level 2.5) sigmabar and
509// a core neighbor, it is declared as used.
510//
511Bool_t MImgCleanStd::CleanStep3Dem(const MCerPhotPix &pix)
512{
513 //
514 // get pixel id of this entry
515 //
516 const Int_t id = pix.GetPixId();
517
518 //
519 // check the num of photons against the noise level
520 //
521 const Float_t entry = pix.GetNumPhotons();
522 const Double_t ratio = fCam->GetPixRatio(id);
523
524 return (entry * ratio <= fCleanLvl2 * fInnerNoise);
525}
526
527void MImgCleanStd::CleanStep3b(MCerPhotPix &pix)
528{
529 const Int_t id = pix.GetPixId();
530
531 //
532 // check if the pixel's next neighbor is a core pixel.
533 // if it is a core pixel set pixel state to: used.
534 //
535 MGeomPix &gpix = (*fCam)[id];
536 const Int_t nnmax = gpix.GetNumNeighbors();
537
538 for (Int_t j=0; j<nnmax; j++)
539 {
540 const Int_t id2 = gpix.GetNeighbor(j);
541
542 if (!fEvt->GetPixById(id2) || !fEvt->IsPixelCore(id2))
543 continue;
544
545 pix.SetPixelUsed();
546 break;
547 }
548}
549
550// --------------------------------------------------------------------------
551//
552// NT: Add option "rings": default value = 1.
553// Look n (n>1) times for the boundary pixels around the used pixels.
554// If a pixel has more than 2.5 (clean level 2.5) sigma,
555// it is declared as used.
556//
557// If a value<2 for fCleanRings is used, no CleanStep4 is done.
558//
559void MImgCleanStd::CleanStep4(UShort_t r, MCerPhotPix &pix)
560{
561 //
562 // check if the pixel's next neighbor is a used pixel.
563 // if it is a used pixel set pixel state to: used,
564 // and tell to which ring it belongs to.
565 //
566 const Int_t id = pix.GetPixId();
567 MGeomPix &gpix = (*fCam)[id];
568
569 const Int_t nnmax = gpix.GetNumNeighbors();
570
571 for (Int_t j=0; j<nnmax; j++)
572 {
573 const Int_t id2 = gpix.GetNeighbor(j);
574
575 MCerPhotPix &npix = *fEvt->GetPixById(id2);
576
577 // FIXME!
578 // Needed check to read CT1 data without having a Segmentation fault
579 if (!fEvt->GetPixById(id2))
580 continue;
581
582 if (!npix.IsPixelUsed() || npix.GetRing()>r-1 )
583 continue;
584
585 pix.SetRing(r);
586 break;
587 }
588}
589
590// --------------------------------------------------------------------------
591//
592// Look for the boundary pixels around the core pixels
593// if a pixel has more than 2.5 (clean level 2.5) sigma, and
594// a core neigbor, it is declared as used.
595//
596void MImgCleanStd::CleanStep3()
597{
598 const Int_t entries = fEvt->GetNumPixels();
599
600 for (UShort_t r=1; r<fCleanRings+1; r++)
601 {
602 for (Int_t i=0; i<entries; i++)
603 {
604 //
605 // get pixel as entry il from list
606 //
607 MCerPhotPix &pix = (*fEvt)[i];
608
609 //
610 // if pixel is a core pixel go to the next pixel
611 //
612 if (pix.IsPixelCore())
613 continue;
614
615 switch (fCleaningMethod)
616 {
617 case kStandard:
618 if (CleanStep3Std(pix))
619 continue;
620 break;
621 case kDemocratic:
622 if (CleanStep3Dem(pix))
623 continue;
624 break;
625 }
626
627 if (r==1)
628 CleanStep3b(pix);
629 else
630 CleanStep4(r, pix);
631 }
632 }
633}
634
635// --------------------------------------------------------------------------
636//
637// Check if MEvtHeader exists in the Parameter list already.
638// if not create one and add them to the list
639//
640Bool_t MImgCleanStd::PreProcess (MParList *pList)
641{
642 fCam = (MGeomCam*)pList->FindObject("MGeomCam");
643 if (!fCam)
644 {
645 *fLog << dbginf << "MGeomCam not found (no geometry information available)... aborting." << endl;
646 return kFALSE;
647 }
648
649 fEvt = (MCerPhotEvt*)pList->FindObject("MCerPhotEvt");
650 if (!fEvt)
651 {
652 *fLog << dbginf << "MCerPhotEvt not found... aborting." << endl;
653 return kFALSE;
654 }
655
656 if (fCleaningMethod != kDemocratic)
657 return kTRUE;
658
659 fSgb = (MSigmabar*)pList->FindObject("MSigmabar");
660 if (!fSgb)
661 {
662 *fLog << dbginf << "MSigmabar not found... aborting." << endl;
663 return kFALSE;
664 }
665
666 return kTRUE;
667}
668
669// --------------------------------------------------------------------------
670//
671// Cleans the image.
672//
673Bool_t MImgCleanStd::Process()
674{
675 if (fSgb)
676 fInnerNoise = fSgb->GetSigmabarInner();
677
678 const Int_t max = CleanStep1();
679 CleanStep2(max);
680 CleanStep3();
681
682 return kTRUE;
683}
684
685// --------------------------------------------------------------------------
686//
687// Print descriptor and cleaning levels.
688//
689void MImgCleanStd::Print(Option_t *o) const
690{
691 *fLog << all << GetDescriptor() << " using ";
692 switch (fCleaningMethod)
693 {
694 case kDemocratic:
695 *fLog << "democratic";
696 break;
697 case kStandard:
698 *fLog << "standard";
699 break;
700 }
701 *fLog << " cleaning initialized with noise level " << fCleanLvl1 << " and " << fCleanLvl2;
702 *fLog << " (CleanRings=" << fCleanRings << ")" << endl;
703}
704
705// --------------------------------------------------------------------------
706//
707// Create two text entry fields, one for each cleaning level and a
708// describing text line.
709//
710void MImgCleanStd::CreateGuiElements(MGGroupFrame *f)
711{
712 //
713 // Create a frame for line 3 and 4 to be able
714 // to align entry field and label in one line
715 //
716 TGHorizontalFrame *f1 = new TGHorizontalFrame(f, 0, 0);
717 TGHorizontalFrame *f2 = new TGHorizontalFrame(f, 0, 0);
718
719 /*
720 * --> use with root >=3.02 <--
721 *
722
723 TGNumberEntry *fNumEntry1 = new TGNumberEntry(frame, 3.0, 2, M_NENT_LVL1, kNESRealOne, kNEANonNegative);
724 TGNumberEntry *fNumEntry2 = new TGNumberEntry(frame, 2.5, 2, M_NENT_LVL1, kNESRealOne, kNEANonNegative);
725
726 */
727 TGTextEntry *entry1 = new TGTextEntry(f1, "****", kImgCleanLvl1);
728 TGTextEntry *entry2 = new TGTextEntry(f2, "****", kImgCleanLvl2);
729
730 // --- doesn't work like expected (until root 3.02?) --- fNumEntry1->SetAlignment(kTextRight);
731 // --- doesn't work like expected (until root 3.02?) --- fNumEntry2->SetAlignment(kTextRight);
732
733 entry1->SetText("3.0");
734 entry2->SetText("2.5");
735
736 entry1->Associate(f);
737 entry2->Associate(f);
738
739 TGLabel *l1 = new TGLabel(f1, "Cleaning Level 1");
740 TGLabel *l2 = new TGLabel(f2, "Cleaning Level 2");
741
742 l1->SetTextJustify(kTextLeft);
743 l2->SetTextJustify(kTextLeft);
744
745 //
746 // Align the text of the label centered, left in the row
747 // with a left padding of 10
748 //
749 TGLayoutHints *laylabel = new TGLayoutHints(kLHintsCenterY|kLHintsLeft, 10);
750 TGLayoutHints *layframe = new TGLayoutHints(kLHintsCenterY|kLHintsLeft, 5, 0, 10);
751
752 //
753 // Add one entry field and the corresponding label to each line
754 //
755 f1->AddFrame(entry1);
756 f2->AddFrame(entry2);
757
758 f1->AddFrame(l1, laylabel);
759 f2->AddFrame(l2, laylabel);
760
761 f->AddFrame(f1, layframe);
762 f->AddFrame(f2, layframe);
763
764 f->AddToList(entry1);
765 f->AddToList(entry2);
766 f->AddToList(l1);
767 f->AddToList(l2);
768 f->AddToList(laylabel);
769 f->AddToList(layframe);
770}
771
772// --------------------------------------------------------------------------
773//
774// Process the GUI Events comming from the two text entry fields.
775//
776Bool_t MImgCleanStd::ProcessMessage(Int_t msg, Int_t submsg, Long_t param1, Long_t param2)
777{
778 if (msg!=kC_TEXTENTRY || submsg!=kTE_ENTER)
779 return kTRUE;
780
781 TGTextEntry *txt = (TGTextEntry*)FindWidget(param1);
782
783 if (!txt)
784 return kTRUE;
785
786 Float_t lvl = atof(txt->GetText());
787
788 switch (param1)
789 {
790 case kImgCleanLvl1:
791 fCleanLvl1 = lvl;
792 *fLog << "Cleaning level 1 set to " << lvl << " sigma." << endl;
793 return kTRUE;
794
795 case kImgCleanLvl2:
796 fCleanLvl2 = lvl;
797 *fLog << "Cleaning level 2 set to " << lvl << " sigma." << endl;
798 return kTRUE;
799 }
800
801 return kTRUE;
802}
803
804// --------------------------------------------------------------------------
805//
806// Implementation of SavePrimitive. Used to write the call to a constructor
807// to a macro. In the original root implementation it is used to write
808// gui elements to a macro-file.
809//
810void MImgCleanStd::StreamPrimitive(ofstream &out) const
811{
812 out << " MImgCleanStd " << GetUniqueName() << "(";
813 out << fCleanLvl1 << ", " << fCleanLvl2;
814
815 if (fName!=gsDefName || fTitle!=gsDefTitle)
816 {
817 out << ", \"" << fName << "\"";
818 if (fTitle!=gsDefTitle)
819 out << ", \"" << fTitle << "\"";
820 }
821 out << ");" << endl;
822
823 if (fCleaningMethod!=kDemocratic)
824 return;
825
826 out << " " << GetUniqueName() << ".SetMethod(MImgCleanStd::kDemocratic);" << endl;
827
828 if (fCleanRings==1)
829 return;
830
831 out << " " << GetUniqueName() << ".SetCleanRings(" << fCleanRings << ");" << endl;
832}
Note: See TracBrowser for help on using the repository browser.