Line | |
---|
1 | void MagicHillas()
|
---|
2 | {
|
---|
3 | //
|
---|
4 | // This is a demonstration program which calculates the Hillas
|
---|
5 | // parameter out of a Magic root file.
|
---|
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 | MGeomCamMagic geomcam;
|
---|
21 | plist->AddToList(&geomcam);
|
---|
22 |
|
---|
23 | MPedestalCam pedest;
|
---|
24 | plist->AddToList(&pedest);
|
---|
25 |
|
---|
26 | //
|
---|
27 | // The Hillas histograms (MHHillas) could be created automatically
|
---|
28 | // but to make sure, that they are not deleted when the macro is
|
---|
29 | // finished you must create them yourself and add it to the list
|
---|
30 | //
|
---|
31 | MHHillas *hists = new MHHillas;
|
---|
32 | plist->AddToList(hists);
|
---|
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 | MReadTree read("oscar_protons.root", "Events") ;
|
---|
43 | MCerPhotCalc ncalc;
|
---|
44 | MImgCleanStd clean;
|
---|
45 | MHillasCalc hcalc;
|
---|
46 | MFillHHillas hfill;
|
---|
47 |
|
---|
48 | tlist.AddToList(&read);
|
---|
49 | tlist.AddToList(&ncalc);
|
---|
50 | tlist.AddToList(&clean);
|
---|
51 | tlist.AddToList(&hcalc);
|
---|
52 | tlist.AddToList(&hfill);
|
---|
53 |
|
---|
54 | //
|
---|
55 | // Create and setup the eventloop
|
---|
56 | //
|
---|
57 | MEvtLoop evtloop;
|
---|
58 | evtloop.SetParList(&plist);
|
---|
59 |
|
---|
60 | //
|
---|
61 | // Execute your analysis
|
---|
62 | //
|
---|
63 | evtloop.Eventloop();
|
---|
64 |
|
---|
65 | //
|
---|
66 | // After the analysis is finished we can display the histograms
|
---|
67 | //
|
---|
68 | hists->Draw();
|
---|
69 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.