source: trunk/MagicSoft/Mars/mmain/MMonteCarlo.cc@ 1006

Last change on this file since 1006 was 993, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 12.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): Harald Kornmayer 1/2001 (harald@mppmu.mpg.de)
19! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de)
20!
21! Copyright: MAGIC Software Development, 2000-2001
22!
23!
24\* ======================================================================== */
25
26#include "MMonteCarlo.h"
27
28#include <stdlib.h>
29#include <iostream.h>
30
31#include <TGLabel.h> // TGLabel
32#include <TGButton.h> // TGTextButton
33#include <TGTextEntry.h> // TGTextEntry
34#include <TGButtonGroup.h> // TGVButtonGroup
35
36ClassImp(MMonteCarlo)
37
38enum {
39 M_BUTTON_COLAREA,
40 M_BUTTON_RATE,
41 M_BUTTON_THRESHOLD
42};
43
44void MMonteCarlo::AddButtons()
45{
46 TGTextButton *carea = new TGTextButton(fTop1, "Collection Area", M_BUTTON_COLAREA);
47 TGTextButton *trate = new TGTextButton(fTop1, "Trigger Rate", M_BUTTON_RATE);
48 TGTextButton *thold = new TGTextButton(fTop1, "Threshold", M_BUTTON_THRESHOLD);
49
50 fList->Add(carea);
51 fList->Add(trate);
52 fList->Add(thold);
53
54 carea->Associate(this);
55 trate->Associate(this);
56 thold->Associate(this);
57
58 TGLayoutHints *laybut = new TGLayoutHints(kLHintsNormal, 5, 5, 10, 10);
59 fList->Add(laybut);
60
61 fTop1->AddFrame(carea, laybut);
62 fTop1->AddFrame(trate, laybut);
63 fTop1->AddFrame(thold, laybut);
64}
65
66void MMonteCarlo::AddSetupTab()
67{
68 //
69 // Create Setup Tab
70 //
71 TGCompositeFrame *frame = CreateNewTab("Setup");
72
73 //
74 // Create a button group (it alignes the buttons and make
75 // them automatic radio buttons)
76 //
77 TGVButtonGroup *group = new TGVButtonGroup(frame);
78 fList->Add(group);
79
80 //
81 // Create three (auto) radio buttons in the button group
82 //
83 fRadioButton1 = new TGRadioButton(group, "Use unnumbered trigger condition olny.");
84 fRadioButton2 = new TGRadioButton(group, "Use only one trigger condition (specify number below).");
85 fRadioButton3 = new TGRadioButton(group, "Use a number of trigger conditions (1..n).");
86
87 fRadioButton1->SetState(kButtonDown);
88
89 /*
90 FIXME: ~TGRadioButton fails with segfault in GetMainFrame
91
92 fList->Add(fRadioButton1);
93 fList->Add(fRadioButton2);
94 fList->Add(fRadioButton3);
95 */
96
97 //
98 // Add the button group (all buttons) as first line
99 //
100 frame->AddFrame(group);
101
102 //
103 // Create entry fields and labels for line 3 and 4
104 //
105
106 /*
107 * --> use with root >=3.02 <--
108 *
109
110 TGNumberEntry *fNumEntry1 = new TGNumberEntry(frame, 3.0, 2, M_NENT_LVL1, kNESRealOne, kNEANonNegative);
111 TGNumberEntry *fNumEntry2 = new TGNumberEntry(frame, 2.5, 2, M_NENT_LVL1, kNESRealOne, kNEANonNegative);
112
113 */
114
115 //
116 // Align the lines:
117 // - top, left
118 // - padding: top=20, bottom=0, left=20, right=0
119 //
120 TGLayoutHints *layline = new TGLayoutHints(kLHintsNormal, 20, 0, 20);
121 fList->Add(layline);
122
123
124 //
125 // Create a frame for line 3 and 4 to be able
126 // to align entry field and label in one line
127 //
128 TGHorizontalFrame *f = new TGHorizontalFrame(frame, 0, 0);
129 fNumEntry = new TGTextEntry(f, "****");
130 fNumEntry->SetText("1");
131 fList->Add(fNumEntry);
132
133 // --- doesn't work like expected --- fNumEntry1->SetAlignment(kTextRight);
134 // --- doesn't work like expected --- fNumEntry2->SetAlignment(kTextRight);
135
136 TGLabel *l = new TGLabel(f, "Trigger Condition Setup.");
137 l->SetTextJustify(kTextLeft);
138 fList->Add(l);
139
140 //
141 // Align the text of the label centered, left in the row
142 // with a left padding of 10
143 //
144 TGLayoutHints *laylabel = new TGLayoutHints(kLHintsCenterY|kLHintsLeft, 10); //, 10); //, 5, 5);
145 fList->Add(laylabel);
146
147 //
148 // Add one entry field and the corresponding label to each line
149 //
150 f->AddFrame(fNumEntry);
151 f->AddFrame(l, laylabel);
152
153 //
154 // Add line 3 and 4 to tab
155 //
156 frame->AddFrame(f, layline);
157}
158
159MMonteCarlo::MMonteCarlo(const TGWindow *main, const TGWindow *p,
160 const UInt_t w, const UInt_t h)
161: MBrowser(main, p, w, h)
162{
163 AddButtons();
164 AddSetupTab();
165
166 MapSubwindows();
167
168 Layout();
169
170 SetWindowName("MonteCarlo Main");
171 SetIconName("MonteCarlo");
172
173 MapWindow();
174}
175
176// ======================================================================
177#include <TObjArray.h>
178
179#include "MParList.h"
180#include "MTaskList.h"
181#include "MEvtLoop.h"
182
183#include "MReadTree.h"
184
185#include "MHMcRate.h"
186#include "MHMcEnergy.h"
187
188#include "MMcTriggerRateCalc.h"
189#include "MMcThresholdCalc.h"
190#include "MMcCollectionAreaCalc.h"
191
192#include "../mmc/MMcTrig.hxx" // FIXME: see FIXME below
193
194Int_t MMonteCarlo::GetDim() const
195{
196 return 0;
197 Int_t dim = atoi(fNumEntry->GetText());
198
199 if (dim<0)
200 {
201 dim=0;
202 fNumEntry->SetText("0");
203 }
204
205 if (fRadioButton1->GetState())
206 dim = 0;
207
208 if (fRadioButton2->GetState())
209 dim = -dim;
210
211 return dim;
212}
213
214void MMonteCarlo::CalculateCollectionArea() const
215{
216 //
217 // first we have to create our empty lists
218 //
219 MParList plist;
220
221 MTaskList tlist;
222 plist.AddToList(&tlist);
223
224 //
225 // FIXME: This line is needed that root finds the MMc-classes in the
226 // dictionary when calling the constructor of MReadTree
227 // I don't have any idea why...
228 // Rem: This happens only in this GUI!
229 //
230 MMcTrig trig;
231
232 //
233 // Setup out tasks:
234 // - First we have to read the events
235 // - Then we can fill the efficiency histograms
236 //
237 MReadTree reader("Events", fInputFile);
238 reader.UseLeaf("fImpact");
239 reader.UseLeaf("fEnergy");
240 reader.UseLeaf("fNumFirstLevel");
241
242 tlist.AddToList(&reader);
243
244 MMcCollectionAreaCalc effi;
245 tlist.AddToList(&effi);
246
247 //
248 // set up the loop for the processing
249 //
250 MEvtLoop magic;
251 magic.SetParList(&plist);
252
253 //
254 // Start to loop over all events
255 //
256 if (!magic.Eventloop())
257 return;
258
259 //
260 // Now the histogram we wanted to get out of the data is
261 // filled and can be displayd
262 //
263 plist.FindObject("MHMcCollectionArea")->DrawClone();
264}
265
266void MMonteCarlo::CalculateTriggerRate() const
267{
268 // This macro has two input parameter:
269 // dim : = 0 -> root file with 1 trigger condition.
270 // > 0 -> number of trigger condition to be analised
271 // in multi conditon file.
272 // < 0 -> selects the -dim trigger condition.
273 //
274 // first we have to create our empty lists
275 //
276 const Int_t dim = GetDim();
277
278 MParList plist;
279 MTaskList tlist;
280
281 //
282 // Setup the parameter list.
283 // - we do not need to create any other container. All of them
284 // are created automatically without loss - we don't have to
285 // access them-
286 //
287 // - we need to create MHMcRate only. The other containers
288 // are created automatically without loss - we don't have to
289 // access them-
290 // - MHMcRate must be created by us because we need the pointer
291 // to it and if it would get created automatically it would also be
292 // deleted automatically
293 // - Actually, depending on using a single trigger option MonteCarlo
294 // file or a multyple trigger option, a MHMcRate or an array of
295 // MHMcRate are needed.
296 //
297 plist.AddToList(&tlist);
298
299 //
300 // You don't have to add the MHMcRate container here by hand.
301 // But if you want to print or display these containers later on
302 // it is necessary (Rem: No printing or displaying is done in this
303 // macro yet)
304 //
305 const UInt_t from = dim>0 ? 1 : -dim;
306 const UInt_t to = dim>0 ? dim : -dim;
307 const Int_t num = to-from+1;
308
309 TObjArray hists(MParList::CreateObjList("MHMcRate", from, to));
310 hists.SetOwner();
311
312 //
313 // Check if the list really contains the right number of histograms
314 //
315 if (hists.GetEntriesFast() != num)
316 return;
317
318 //
319 // Add the histograms to the paramater list.
320 //
321 plist.AddToList(&hists);
322
323 //
324 // FIXME: This line is needed that root finds the MMc-classes in the
325 // dictionary when calling the constructor of MReadTree
326 // I don't have any idea why...
327 // Rem: This happens only in this GUI!
328 //
329 MMcTrig trig;
330
331 //
332 // Setup out tasks:
333 // - First we have to read the events
334 // - Then we can calculate rates, for what the number of
335 // triggered showers from a empty reflector file for the
336 // analised trigger conditions should be set (BgR[])
337 //
338 MReadTree reader("Events", fInputFile);
339 reader.UseLeaf("fImpact");
340 reader.UseLeaf("fEnergy");
341 reader.UseLeaf("fPhi");
342 reader.UseLeaf("fTheta");
343 reader.UseLeaf("fNumFirstLevel");
344 reader.UseLeaf("fPhotElfromShower");
345
346 tlist.AddToList(&reader);
347
348 Float_t BgR[10]={660, 4, 0, 0, 0, 0, 0, 0, 0, 0};
349
350 MMcTriggerRateCalc crate(dim, 14, BgR, 100000);
351 tlist.AddToList(&crate);
352
353 //
354 // set up the loop for the processing
355 //
356 MEvtLoop magic;
357 magic.SetParList(&plist);
358
359 //
360 // Start to loop over all events
361 //
362 if (!magic.Eventloop())
363 return;
364
365 hists.Print();
366}
367
368void MMonteCarlo::CalculateThreshold() const
369{
370 const Int_t dim = GetDim();
371
372 //
373 // This macro fill the container MHMcEnergies using the task
374 // MMcThresholdCalc and shows the results.
375 //
376 MParList plist;
377
378 MTaskList tlist;
379 plist.AddToList(&tlist);
380
381 //
382 // Setup the parameter list
383 // - You need create the container MHMcEnergies.
384 // + You need to put the number of trigger conditions when
385 // you declarete the MHMcEnergies
386 // + If you don't put any dimension to MHMcEnergies it works
387 // taking only the trigger information from MMcTrig
388 //
389
390 //
391 // Create numtriggerconditions histograms of type MHMcEnergy
392 // and store the histograms in an TObjArray
393 //
394 const UInt_t from = dim>0 ? 1 : -dim;
395 const UInt_t to = dim>0 ? dim : -dim;
396 const Int_t num = to-from+1;
397
398 TObjArray hists(MParList::CreateObjList("MHMcEnergy", from, to));
399 hists.SetOwner();
400
401 //
402 // Check if the list really contains the right number of histograms
403 //
404 if (hists.GetEntriesFast() != num)
405 return;
406
407 //
408 // Add the histograms to the paramater list.
409 //
410 plist.AddToList(&hists);
411
412 //
413 // FIXME: This line is needed that root finds the MMc-classes in the
414 // dictionary when calling the constructor of MReadTree
415 // I don't have any idea why...
416 // Rem: This happens only in this GUI!
417 //
418 MMcTrig trig;
419
420 //
421 // Setup the task list
422 // - You need the read and the MMcThresholdCalc tasks
423 // - You have to fill the histograms for the Energy threshold
424 // + You need to put the number of trigger conditions when
425 // you declarete the MMcThresholdCalc
426 // + If you don't put any dimension to MMcThresholdCalc it works
427 // like one dimension MMcThresholdCalc
428 //
429 MReadTree read("Events", fInputFile);
430 read.UseLeaf("fEnergy");
431 read.UseLeaf("fNumFirstLevel");
432
433 MMcThresholdCalc calc(dim);
434 tlist.AddToList(&read);
435 tlist.AddToList(&calc);
436
437 MEvtLoop evtloop;
438 evtloop.SetParList(&plist);
439
440 //
441 // Begin the loop (if the loop wasn't successfull
442 // don't try to draw the results
443 //
444 if (!evtloop.Eventloop())
445 return;
446
447 //
448 // Now you can display the results
449 //
450 TIter Next(&hists);
451 TObject *obj;
452 while ((obj=Next()))
453 obj->DrawClone();
454}
455
456// ======================================================================
457
458Bool_t MMonteCarlo::ProcessMessage(Long_t msg, Long_t parm1, Long_t parm2)
459{
460 if (GET_MSG(msg) == kC_COMMAND && GET_SUBMSG(msg) == kCM_BUTTON)
461 switch (parm1)
462 {
463 case M_BUTTON_COLAREA:
464 CalculateCollectionArea();
465 return kTRUE;
466
467 case M_BUTTON_RATE:
468 CalculateTriggerRate();
469 return kTRUE;
470
471 case M_BUTTON_THRESHOLD:
472 CalculateThreshold();
473 return kTRUE;
474 }
475
476 return MBrowser::ProcessMessage(msg, parm1, parm2);
477}
Note: See TracBrowser for help on using the repository browser.