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): Thomas Bretz, 12/2000 <mailto:tbretz@astro.uni-wuerzburg.de>
|
---|
19 | ! Author(s): Abelardo Moralejo, 2/2005 <mailto:moralejo@pd.infn.it>
|
---|
20 | !
|
---|
21 | ! Copyright: MAGIC Software Development, 2000-2005
|
---|
22 | !
|
---|
23 | !
|
---|
24 | \* ======================================================================== */
|
---|
25 |
|
---|
26 | //
|
---|
27 | // Example macro on how to calculate effective areas. The input is a file
|
---|
28 | // containing Hillas parameters of the MC events surviving a certain kind
|
---|
29 | // of analysis. It must also contain a tree called "OriginalMC" with a branch
|
---|
30 | // "MMcEvtBasic" and one entry per original simulated shower used to produce
|
---|
31 | // the events in that input file. The current (2/2005) camera simulation in
|
---|
32 | // the cvs already writes out all events with the MMcEvtBasic container to
|
---|
33 | // the Events tree. In Mars/macros/mccalibrate.C and starmc2.C you can see
|
---|
34 | // how this branch is put to a separate tree "OriginalMC" and written out
|
---|
35 | // to the "star" file. This will not work with star files not containing this
|
---|
36 | // extra tree. Please contact moralejo@pd.infn.it in case of questions
|
---|
37 | // about this new approach to the calculation of effective areas.
|
---|
38 | //
|
---|
39 |
|
---|
40 | void collarea(TString filename="star_gamma_test.root", TString outname="area.root")
|
---|
41 | {
|
---|
42 | MStatusDisplay *d = new MStatusDisplay;
|
---|
43 | // redirect logging output to GUI, kFALSE to disable stream to stdout
|
---|
44 | d->SetLogStream(&gLog, kTRUE);
|
---|
45 |
|
---|
46 | //
|
---|
47 | // First loop: fill the MHMcCollectionArea::fHistAll histogram containing
|
---|
48 | // all the events produced at the Corsika level:
|
---|
49 | //
|
---|
50 | MParList parlist;
|
---|
51 | MTaskList tasklist;
|
---|
52 |
|
---|
53 | parlist.AddToList(&tasklist);
|
---|
54 |
|
---|
55 | //
|
---|
56 | // Setup out tasks:
|
---|
57 | // - First we have to read the events
|
---|
58 | //
|
---|
59 | MReadMarsFile reader("OriginalMC", filename);
|
---|
60 | reader.DisableAutoScheme();
|
---|
61 |
|
---|
62 | //
|
---|
63 | // Create collection area object and add it to the task list
|
---|
64 | //
|
---|
65 | MHMcCollectionArea collarea;
|
---|
66 | parlist.AddToList(&collarea);
|
---|
67 |
|
---|
68 | //
|
---|
69 | // Set the COARSE binnings in which you will divide your data, to get
|
---|
70 | // the collection area in these same binnings. You can set also this
|
---|
71 | // binnings on an existing and filled MHMcCollectionAreaObject, and
|
---|
72 | // call Calc again to get the effective area in other coarse bins.
|
---|
73 | //
|
---|
74 | MBinning binsTheta("binsTheta");
|
---|
75 | MBinning binsEnergy("binsEnergy"); // name must be standardized!
|
---|
76 | Int_t nbins = 8;
|
---|
77 | TArrayD edges(nbins+1);
|
---|
78 | edges[0] = 0;
|
---|
79 | edges[1] = 10.;
|
---|
80 | edges[2] = 20.;
|
---|
81 | edges[3] = 30.;
|
---|
82 | edges[4] = 40.;
|
---|
83 | edges[5] = 50.;
|
---|
84 | edges[6] = 60.;
|
---|
85 | edges[7] = 70.;
|
---|
86 | edges[8] = 80.;
|
---|
87 | binsTheta.SetEdges(edges); // Theta [deg]
|
---|
88 | binsEnergy.SetEdgesLog(20, 2., 20000); // Energy [GeV]
|
---|
89 | parlist.AddToList(&binsTheta);
|
---|
90 | parlist.AddToList(&binsEnergy);
|
---|
91 |
|
---|
92 | // Task which fills the necessary histograms in MHMcCollectionArea
|
---|
93 | MMcCollectionAreaCalc effi;
|
---|
94 |
|
---|
95 | // Tentative energy spectrum. This may slightly modify the calculation
|
---|
96 | // of effective areas. If not added to the parameter list, a flat spectrum
|
---|
97 | // in dN/dE will be assumed. "x" stands for the energy. The name of the
|
---|
98 | // function must be standardized!
|
---|
99 |
|
---|
100 | TF1 Spectrum("Spectrum", "pow(x,-5.)");
|
---|
101 | effi.SetSpectrum(&Spectrum);
|
---|
102 |
|
---|
103 | tasklist.AddToList(&reader);
|
---|
104 | tasklist.AddToList(&effi);
|
---|
105 |
|
---|
106 | //
|
---|
107 | // set up the loop for the processing
|
---|
108 | //
|
---|
109 | MEvtLoop magic;
|
---|
110 | magic.SetParList(&parlist);
|
---|
111 |
|
---|
112 | //
|
---|
113 | // Start to loop over all events
|
---|
114 | //
|
---|
115 | magic.SetDisplay(d);
|
---|
116 |
|
---|
117 | if (!magic.Eventloop())
|
---|
118 | return;
|
---|
119 |
|
---|
120 | tasklist.PrintStatistics();
|
---|
121 |
|
---|
122 |
|
---|
123 | //
|
---|
124 | // Second loop: now fill the histogram MHMcCollectionArea::fHistSel
|
---|
125 | //
|
---|
126 |
|
---|
127 | MParList parlist2;
|
---|
128 | MTaskList tasklist2;
|
---|
129 | parlist2.AddToList(&tasklist2);
|
---|
130 | parlist2.AddToList((MHMcCollectionArea*)parlist->FindObject("MHMcCollectionArea"));
|
---|
131 |
|
---|
132 | MReadMarsFile reader2("Events", filename);
|
---|
133 | reader2.DisableAutoScheme();
|
---|
134 |
|
---|
135 | tasklist2.AddToList(&reader2);
|
---|
136 |
|
---|
137 | // The same task as before, now will fill MHMcCollectionArea::fHistSel
|
---|
138 | // and call MHMcCollectionArea::Calc in the PostProcess
|
---|
139 | tasklist2.AddToList(&effi);
|
---|
140 |
|
---|
141 | //
|
---|
142 | // set up the loop for the processing
|
---|
143 | //
|
---|
144 | MEvtLoop magic2;
|
---|
145 | magic2.SetParList(&parlist2);
|
---|
146 |
|
---|
147 | //
|
---|
148 | // Start to loop over all events
|
---|
149 | //
|
---|
150 | magic2.SetDisplay(d);
|
---|
151 |
|
---|
152 | if (!magic2.Eventloop())
|
---|
153 | return;
|
---|
154 |
|
---|
155 | tasklist2.PrintStatistics();
|
---|
156 |
|
---|
157 | //
|
---|
158 | // Now the histogram we wanted to get out of the data is
|
---|
159 | // filled and can be displayed
|
---|
160 | //
|
---|
161 | if ((d = magic2.GetDisplay()))
|
---|
162 | d->AddTab("Collection Area");
|
---|
163 | else
|
---|
164 | new TCanvas("CollArea", "Result of the collection area calculation");
|
---|
165 |
|
---|
166 | gStyle->SetPalette(1,0);
|
---|
167 | gPad->SetLogx();
|
---|
168 | TH2D* areaplot = ((MHMcCollectionArea*)parlist2.FindObject
|
---|
169 | ("MHMcCollectionArea"))->GetHistCoarse();
|
---|
170 |
|
---|
171 | areaplot->SetStats(0);
|
---|
172 | areaplot->SetTitle("Effective area (m^{2})");
|
---|
173 | areaplot->GetXaxis()->SetTitle("Energy (GeV)");
|
---|
174 | areaplot->GetYaxis()->SetTitle("\\theta (deg)");
|
---|
175 | areaplot->DrawCopy("zcol");
|
---|
176 |
|
---|
177 | //
|
---|
178 | // Write histogram to a file in case an output
|
---|
179 | // filename has been supplied
|
---|
180 | //
|
---|
181 |
|
---|
182 | if (outname.IsNull())
|
---|
183 | return;
|
---|
184 |
|
---|
185 | TFile f(outname, "recreate");
|
---|
186 | if (!f)
|
---|
187 | return;
|
---|
188 |
|
---|
189 | // Write to the output file:
|
---|
190 | parlist2.FindObject("MHMcCollectionArea")->Write();
|
---|
191 | }
|
---|