Line | |
---|
1 | void 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 | //
|
---|
32 | // Now setup the tasks and tasklist:
|
---|
33 | //
|
---|
34 | // 1) read in the data from a ct1 ascii file
|
---|
35 | // 2) clean the image
|
---|
36 | // 3) calculate hillas
|
---|
37 | // 4) fill the hillas into the histograms
|
---|
38 | //
|
---|
39 | MCT1ReadAscii read("CT1_99_on1.dat") ;
|
---|
40 | MImgCleanStd clean;
|
---|
41 | MHillasCalc hcalc;
|
---|
42 | MFillHHillas hfill;
|
---|
43 |
|
---|
44 | tlist.AddToList(&read);
|
---|
45 | tlist.AddToList(&clean);
|
---|
46 | tlist.AddToList(&hcalc);
|
---|
47 | tlist.AddToList(&hfill);
|
---|
48 |
|
---|
49 | //
|
---|
50 | // Create and setup the eventloop
|
---|
51 | //
|
---|
52 | MEvtLoop evtloop;
|
---|
53 | evtloop.SetParList(&plist);
|
---|
54 |
|
---|
55 | //
|
---|
56 | // Execute your analysis
|
---|
57 | //
|
---|
58 | evtloop.Eventloop();
|
---|
59 |
|
---|
60 | //
|
---|
61 | // After the analysis is finished we can display the histograms
|
---|
62 | //
|
---|
63 | hists->Draw();
|
---|
64 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.