source: trunk/MagicSoft/Mars/macros/CT1Hillas.C@ 761

Last change on this file since 761 was 716, checked in by tbretz, 24 years ago
*** empty log message ***
File size: 1.7 KB
Line 
1void CT1Hillas()
2{
3 //
4 // This is a demonstration program which calculates the Hillas
5 // parameter out of a CT1 dataset.
6
7 //
8 // Create a empty Parameter List and an empty Task List
9 // The tasklist is identified in the eventloop by its name
10 //
11 MParList plist;
12
13 MTaskList tlist;
14 plist->AddToList(&tlist);
15
16 //
17 // The geometry container must be created by yourself to make sure
18 // that you don't choos a wrong geometry by chance
19 //
20 MGeomCamCT1 geomcam;
21 plist->AddToList(&geomcam);
22
23 //
24 // The Hillas histograms (MHHillas) could be created automatically
25 // but to make sure, that they are not deleted when the macro is
26 // finished you must create them yourself and add it to the list
27 //
28 MHHillas *hists = new MHHillas;
29 plist->AddToList(hists);
30
31 MHStarMap *smap = new MHStarMap;
32 plist->AddToList(smap);
33
34 //
35 // Now setup the tasks and tasklist:
36 //
37 // 1) read in the data from a ct1 ascii file
38 // 2) clean the image
39 // 3) calculate hillas
40 // 4) fill the hillas into the histograms
41 //
42 MCT1ReadAscii read;
43 read.AddFile("CT1_99_off1.dat");
44 read.AddFile("CT1_99_off2.dat");
45
46 MImgCleanStd clean;
47 MHillasCalc hcalc;
48 MFillHHillas hfill;
49 MFillHStarMap sfill;
50
51 tlist.AddToList(&read);
52 tlist.AddToList(&clean);
53 tlist.AddToList(&hcalc);
54 tlist.AddToList(&hfill);
55 tlist.AddToList(&sfill);
56
57 //
58 // Create and setup the eventloop
59 //
60 MEvtLoop evtloop;
61 evtloop.SetParList(&plist);
62
63 //
64 // Execute your analysis
65 //
66 evtloop.Eventloop();
67
68 //
69 // After the analysis is finished we can display the histograms
70 //
71 hists->Draw();
72 smap->Draw();
73}
Note: See TracBrowser for help on using the repository browser.