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): Javier López, 05/2004 <mailto:jlopez@ifae.es>
|
---|
19 | !
|
---|
20 | ! Copyright: MAGIC Software Development, 2000-2004
|
---|
21 | !
|
---|
22 | !
|
---|
23 | \* ======================================================================== */
|
---|
24 |
|
---|
25 |
|
---|
26 | Bool_t HandleInput()
|
---|
27 | {
|
---|
28 | TTimer timer("gSystem->ProcessEvents();", 50, kFALSE);
|
---|
29 | while (1)
|
---|
30 | {
|
---|
31 | //
|
---|
32 | // While reading the input process gui events asynchronously
|
---|
33 | //
|
---|
34 | timer.TurnOn();
|
---|
35 | TString input = Getline("Type 'q' to exit, <return> to go on: ");
|
---|
36 | timer.TurnOff();
|
---|
37 |
|
---|
38 | if (input=="q\n")
|
---|
39 | return kFALSE;
|
---|
40 |
|
---|
41 | if (input=="\n")
|
---|
42 | return kTRUE;
|
---|
43 | };
|
---|
44 |
|
---|
45 | return kFALSE;
|
---|
46 | }
|
---|
47 |
|
---|
48 |
|
---|
49 | void findstars(const TString filename="20040422_*_D_Mrk421_E.root", const TString directory="/local_disk/Data/rootdata/Mrk421/Period016/2004_04_22/", const UInt_t numEvents = 0)
|
---|
50 | {
|
---|
51 |
|
---|
52 | //
|
---|
53 | // Create a empty Parameter List and an empty Task List
|
---|
54 | // The tasklist is identified in the eventloop by its name
|
---|
55 | //
|
---|
56 | MParList plist;
|
---|
57 |
|
---|
58 | MTaskList tlist;
|
---|
59 | plist.AddToList(&tlist);
|
---|
60 |
|
---|
61 |
|
---|
62 | MGeomCamMagic geomcam;
|
---|
63 | MCameraDC dccam;
|
---|
64 | MStarLocalCam starcam;
|
---|
65 |
|
---|
66 | plist.AddToList(&geomcam);
|
---|
67 | plist.AddToList(&dccam);
|
---|
68 | plist.AddToList(&starcam);
|
---|
69 |
|
---|
70 | //
|
---|
71 | // Now setup the tasks and tasklist:
|
---|
72 | // ---------------------------------
|
---|
73 | //
|
---|
74 |
|
---|
75 | // Reads the trees of the root file and the analysed branches
|
---|
76 | MReadReports read;
|
---|
77 | read.AddTree("Currents");
|
---|
78 | read.AddFile(directory+filename); // after the reading of the trees!!!
|
---|
79 | read.AddToBranchList("MReportCurrents.*");
|
---|
80 |
|
---|
81 | MGeomApply geomapl;
|
---|
82 | TString continuoslightfile =
|
---|
83 | "/local_disk/CaCoData/rootdata/Miscellaneous/Period016/2004_04_16/dc_2004_04_16_04_46_18_22368_Off3c279-2CL100.root";
|
---|
84 |
|
---|
85 | Float_t mindc = 0.9; //[uA]
|
---|
86 | MCalibrateDC dccal;
|
---|
87 | dccal.SetFileName(continuoslightfile);
|
---|
88 | dccal.SetMinDCAllowed(mindc);
|
---|
89 |
|
---|
90 | const Int_t numblind = 5;
|
---|
91 | const Short_t x[numblind] = { 47, 124, 470, 475, 571};
|
---|
92 | const TArrayS blindpixels(numblind,(Short_t*)x);
|
---|
93 | Float_t ringinterest = 100; //[mm]
|
---|
94 | Float_t tailcut = 3.5;
|
---|
95 | UInt_t integratedevents = 4;
|
---|
96 |
|
---|
97 | MFindStars findstars;
|
---|
98 | findstars.SetBlindPixels(blindpixels);
|
---|
99 | findstars.SetRingInterest(ringinterest);
|
---|
100 | findstars.SetDCTailCut(tailcut);
|
---|
101 | findstars.SetNumIntegratedEvents(integratedevents);
|
---|
102 | findstars.SetMinuitPrintOutLevel(-1);
|
---|
103 |
|
---|
104 |
|
---|
105 | tlist.AddToList(&geomapl);
|
---|
106 | tlist.AddToList(&read);
|
---|
107 | tlist.AddToList(&dccal);
|
---|
108 | tlist.AddToList(&findstars, "Currents");
|
---|
109 |
|
---|
110 | //
|
---|
111 | // Create and setup the eventloop
|
---|
112 | //
|
---|
113 | MEvtLoop evtloop;
|
---|
114 | evtloop.SetParList(&plist);
|
---|
115 |
|
---|
116 | //
|
---|
117 | // Execute your analysis
|
---|
118 | //
|
---|
119 |
|
---|
120 | if (numEvents > 0)
|
---|
121 | {
|
---|
122 | if (!evtloop.Eventloop(numEvents))
|
---|
123 | return;
|
---|
124 | }
|
---|
125 | else
|
---|
126 | {
|
---|
127 | if (!evtloop.PreProcess())
|
---|
128 | return;
|
---|
129 |
|
---|
130 | // MHCamera display0(geomcam);
|
---|
131 | // display0.SetPrettyPalette();
|
---|
132 | // display0.Draw();
|
---|
133 | // // display0.SetCamContent(dccal.GetDisplay());
|
---|
134 | // display0.SetCamContent(dccal.GetDCCalibrationFactor());
|
---|
135 | // gPad->Modified();
|
---|
136 | // gPad->Update();
|
---|
137 |
|
---|
138 | // // Remove the comments if you want to go through the file
|
---|
139 | // // event-by-event:
|
---|
140 | // if (!HandleInput())
|
---|
141 | // break;
|
---|
142 |
|
---|
143 | MHCamera display(geomcam);
|
---|
144 | display.SetPrettyPalette();
|
---|
145 | display.Draw();
|
---|
146 | gPad->cd(1);
|
---|
147 | starcam.Draw();
|
---|
148 |
|
---|
149 | UInt_t numevents=0;
|
---|
150 |
|
---|
151 | while (tlist.Process())
|
---|
152 | {
|
---|
153 | numevents++;
|
---|
154 | if (numevents%integratedevents==0)
|
---|
155 | {
|
---|
156 | // display.SetCamContent(dccam);
|
---|
157 | display.SetCamContent(findstars.GetDisplay());
|
---|
158 | gPad->Modified();
|
---|
159 | gPad->Update();
|
---|
160 | starcam.Print("maxpossizechi");
|
---|
161 | // Remove the comments if you want to go through the file
|
---|
162 | // event-by-event:
|
---|
163 | if (!HandleInput())
|
---|
164 | break;
|
---|
165 | }
|
---|
166 | }
|
---|
167 |
|
---|
168 | evtloop.PostProcess();
|
---|
169 | }
|
---|
170 |
|
---|
171 | tlist.PrintStatistics();
|
---|
172 |
|
---|
173 | }
|
---|
174 |
|
---|
175 |
|
---|