| Line | |
|---|
| 1 | void readCT1()
|
|---|
| 2 | {
|
|---|
| 3 | MParList plist;
|
|---|
| 4 |
|
|---|
| 5 | MGeomCamCT1 geomcam;
|
|---|
| 6 | MHillas hillas;
|
|---|
| 7 | MTaskList tlist;
|
|---|
| 8 |
|
|---|
| 9 | plist->AddToList(&geomcam);
|
|---|
| 10 | plist->AddToList(&hillas);
|
|---|
| 11 | plist->AddToList(&tlist);
|
|---|
| 12 |
|
|---|
| 13 | MCT1ReadAscii read("CT1_99_off1.dat") ;
|
|---|
| 14 | MImgCleanStd clean;
|
|---|
| 15 | MHillasCalc hcalc;
|
|---|
| 16 |
|
|---|
| 17 | tlist.AddToList(&read);
|
|---|
| 18 | tlist.AddToList(&clean);
|
|---|
| 19 | tlist.AddToList(&hcalc);
|
|---|
| 20 |
|
|---|
| 21 | MEvtLoop evtloop;
|
|---|
| 22 | evtloop.SetParList(&plist);
|
|---|
| 23 |
|
|---|
| 24 | if (!evtloop.PreProcess())
|
|---|
| 25 | return;
|
|---|
| 26 |
|
|---|
| 27 | MCerPhotEvt &phevt = *(MCerPhotEvt*)plist->FindObject("MCerPhotEvt");
|
|---|
| 28 |
|
|---|
| 29 | Int_t icount = 0 ;
|
|---|
| 30 | MCamDisplay display(&geomcam) ;
|
|---|
| 31 | display.DrawPhotNum(&phevt);
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 | while (read.Process())
|
|---|
| 35 | {
|
|---|
| 36 | cout << "Event: " << icount++ << endl ;
|
|---|
| 37 |
|
|---|
| 38 | display.DrawPhotNum(&phevt);
|
|---|
| 39 | gClient->HandleInput();
|
|---|
| 40 | if(getchar()=='q')
|
|---|
| 41 | break;
|
|---|
| 42 |
|
|---|
| 43 | clean.Process();
|
|---|
| 44 | hcalc.Process();
|
|---|
| 45 |
|
|---|
| 46 | hillas.Print();
|
|---|
| 47 | hillas.Draw();
|
|---|
| 48 |
|
|---|
| 49 | display.DrawPhotNum(&phevt);
|
|---|
| 50 |
|
|---|
| 51 | gClient->HandleInput();
|
|---|
| 52 | if(getchar()=='q')
|
|---|
| 53 | break;
|
|---|
| 54 |
|
|---|
| 55 | hillas.Clear();
|
|---|
| 56 | }
|
|---|
| 57 |
|
|---|
| 58 | evtloop.PostProcess();
|
|---|
| 59 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.