| 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, 5/2003 <mailto:tbretz@astro.uni-wuerzburg.de>
|
|---|
| 19 | !
|
|---|
| 20 | ! Copyright: MAGIC Software Development, 2000-2003
|
|---|
| 21 | !
|
|---|
| 22 | !
|
|---|
| 23 | \* ======================================================================== */
|
|---|
| 24 |
|
|---|
| 25 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 26 | //
|
|---|
| 27 | // MRflEvtData
|
|---|
| 28 | //
|
|---|
| 29 | // All Photons of a event from the reflector program
|
|---|
| 30 | //
|
|---|
| 31 | // Should be filled like this:
|
|---|
| 32 | // MRflEvtData evt;
|
|---|
| 33 | // evt.Reset();
|
|---|
| 34 | // for (int i=0; i<10; i++)
|
|---|
| 35 | // MRflSinglePhoton &ph = evt.GetNewPhoton();
|
|---|
| 36 | // evt.FixSize();
|
|---|
| 37 | //
|
|---|
| 38 | /////////////////////////////////////////////////////////////////////////////
|
|---|
| 39 | #include "MRflEvtData.h"
|
|---|
| 40 |
|
|---|
| 41 | #include <TMarker.h>
|
|---|
| 42 |
|
|---|
| 43 | #include "MLog.h"
|
|---|
| 44 | #include "MLogManip.h"
|
|---|
| 45 |
|
|---|
| 46 | #include "MHexagon.h"
|
|---|
| 47 | #include "MGeomCam.h"
|
|---|
| 48 |
|
|---|
| 49 | #include "MRflSinglePhoton.h"
|
|---|
| 50 |
|
|---|
| 51 | ClassImp(MRflEvtData);
|
|---|
| 52 |
|
|---|
| 53 | using namespace std;
|
|---|
| 54 |
|
|---|
| 55 | // --------------------------------------------------------------------------
|
|---|
| 56 | //
|
|---|
| 57 | // Creates a MCerPhotPix object for each pixel in the event
|
|---|
| 58 | //
|
|---|
| 59 | MRflEvtData::MRflEvtData(const char *name, const char *title)
|
|---|
| 60 | : fList("MRflSinglePhoton", 0), fPos(0)
|
|---|
| 61 | {
|
|---|
| 62 | fName = name ? name : "MRflEvtData";
|
|---|
| 63 | fTitle = title ? title : "All Photons from a reflector event";
|
|---|
| 64 | }
|
|---|
| 65 |
|
|---|
| 66 | // --------------------------------------------------------------------------
|
|---|
| 67 | //
|
|---|
| 68 | // Copy constructor which copies the contents of dat into the new object
|
|---|
| 69 | //
|
|---|
| 70 | MRflEvtData::MRflEvtData(const MRflEvtData &dat)
|
|---|
| 71 | : fList("MRflSinglePhoton", 0), fPos(0)
|
|---|
| 72 | {
|
|---|
| 73 | MRflSinglePhoton *ph=NULL;
|
|---|
| 74 |
|
|---|
| 75 | TIter Next(&dat.fList);
|
|---|
| 76 | while ((ph=(MRflSinglePhoton*)Next()))
|
|---|
| 77 | new (fList[fPos++]) MRflSinglePhoton(*ph);
|
|---|
| 78 | }
|
|---|
| 79 |
|
|---|
| 80 | // --------------------------------------------------------------------------
|
|---|
| 81 | //
|
|---|
| 82 | // Clone function producing a clone of this. A pointer to the clone is
|
|---|
| 83 | // returned.
|
|---|
| 84 | //
|
|---|
| 85 | TObject *MRflEvtData::Clone(Option_t *) const
|
|---|
| 86 | {
|
|---|
| 87 | return new MRflEvtData(*this);
|
|---|
| 88 | }
|
|---|
| 89 |
|
|---|
| 90 | // --------------------------------------------------------------------------
|
|---|
| 91 | //
|
|---|
| 92 | // Return the i-th MRflSinglePhoton. Be carefull the result is not
|
|---|
| 93 | // range checked!
|
|---|
| 94 | //
|
|---|
| 95 | const MRflSinglePhoton &MRflEvtData::GetPhoton(Int_t i) const
|
|---|
| 96 | {
|
|---|
| 97 | return *static_cast<MRflSinglePhoton*>(fList.UncheckedAt(i));
|
|---|
| 98 | }
|
|---|
| 99 |
|
|---|
| 100 | // --------------------------------------------------------------------------
|
|---|
| 101 | //
|
|---|
| 102 | // Dump informations off all photons
|
|---|
| 103 | //
|
|---|
| 104 | void MRflEvtData::Print(Option_t *o) const
|
|---|
| 105 | {
|
|---|
| 106 | *fLog << all << underline << GetDescriptor() << ":" << endl;
|
|---|
| 107 | fList.Print();
|
|---|
| 108 | }
|
|---|
| 109 |
|
|---|
| 110 | // --------------------------------------------------------------------------
|
|---|
| 111 | //
|
|---|
| 112 | // Add a new photon to the list
|
|---|
| 113 | //
|
|---|
| 114 | MRflSinglePhoton &MRflEvtData::GetNewPhoton()
|
|---|
| 115 | {
|
|---|
| 116 | // If necessary the []-operator creates a new element
|
|---|
| 117 | // Warning: The virtual table may not be set correctly,
|
|---|
| 118 | // this is why you have to call the new-operator.
|
|---|
| 119 | return *new (fList[fPos++]) MRflSinglePhoton;
|
|---|
| 120 | }
|
|---|
| 121 |
|
|---|
| 122 | // --------------------------------------------------------------------------
|
|---|
| 123 | //
|
|---|
| 124 | // If you have added all photon fix the size of the container.
|
|---|
| 125 | //
|
|---|
| 126 | void MRflEvtData::FixSize()
|
|---|
| 127 | {
|
|---|
| 128 | if (fList.GetEntriesFast() == fPos)
|
|---|
| 129 | return;
|
|---|
| 130 |
|
|---|
| 131 | fList.ExpandCreate(fPos);
|
|---|
| 132 | }
|
|---|
| 133 |
|
|---|
| 134 | // --------------------------------------------------------------------------
|
|---|
| 135 | //
|
|---|
| 136 | // Fills all photon distances scaled with scale (default=1) into a TH1
|
|---|
| 137 | //
|
|---|
| 138 | void MRflEvtData::FillRad(TH1 &hist, Float_t scale) const
|
|---|
| 139 | {
|
|---|
| 140 | MRflSinglePhoton *ph=NULL;
|
|---|
| 141 |
|
|---|
| 142 | TIter Next(&fList);
|
|---|
| 143 | while ((ph=(MRflSinglePhoton*)Next()))
|
|---|
| 144 | ph->FillRad(hist, scale);
|
|---|
| 145 | }
|
|---|
| 146 |
|
|---|
| 147 | // --------------------------------------------------------------------------
|
|---|
| 148 | //
|
|---|
| 149 | // Fills all photon distances scaled with scale (default=1) versus x
|
|---|
| 150 | // into a TH2
|
|---|
| 151 | //
|
|---|
| 152 | void MRflEvtData::FillRad(TH2 &hist, Double_t x, Float_t scale) const
|
|---|
| 153 | {
|
|---|
| 154 | MRflSinglePhoton *ph=NULL;
|
|---|
| 155 |
|
|---|
| 156 | TIter Next(&fList);
|
|---|
| 157 | while ((ph=(MRflSinglePhoton*)Next()))
|
|---|
| 158 | ph->FillRad(hist, x, scale);
|
|---|
| 159 | }
|
|---|
| 160 |
|
|---|
| 161 | // --------------------------------------------------------------------------
|
|---|
| 162 | //
|
|---|
| 163 | // Fills all photons (x,y) scaled with scale (default=1) into a TH2.
|
|---|
| 164 | //
|
|---|
| 165 | void MRflEvtData::Fill(TH2 &hist, Float_t scale) const
|
|---|
| 166 | {
|
|---|
| 167 | MRflSinglePhoton *ph=NULL;
|
|---|
| 168 |
|
|---|
| 169 | TIter Next(&fList);
|
|---|
| 170 | while ((ph=(MRflSinglePhoton*)Next()))
|
|---|
| 171 | ph->Fill(hist, scale);
|
|---|
| 172 | }
|
|---|
| 173 |
|
|---|
| 174 | // --------------------------------------------------------------------------
|
|---|
| 175 | //
|
|---|
| 176 | // Fills all photons (x,y) scaled with scale (default=1) versus z into a TH3
|
|---|
| 177 | //
|
|---|
| 178 | void MRflEvtData::Fill(TH3 &hist, Double_t z, Float_t scale) const
|
|---|
| 179 | {
|
|---|
| 180 | MRflSinglePhoton *ph=NULL;
|
|---|
| 181 |
|
|---|
| 182 | TIter Next(&fList);
|
|---|
| 183 | while ((ph=(MRflSinglePhoton*)Next()))
|
|---|
| 184 | ph->Fill(hist, z, scale);
|
|---|
| 185 | }
|
|---|
| 186 |
|
|---|
| 187 | void MRflEvtData::DrawPixelContent(Int_t num) const
|
|---|
| 188 | {
|
|---|
| 189 | }
|
|---|
| 190 |
|
|---|
| 191 | // ------------------------------------------------------------------------
|
|---|
| 192 | //
|
|---|
| 193 | // Fill a reflector event. Sums all pixels in each pixel as the
|
|---|
| 194 | // pixel contents.
|
|---|
| 195 | //
|
|---|
| 196 | // WARNING: Due to the estimation in DistanceToPrimitive and the
|
|---|
| 197 | // calculation in pixels instead of x, y this is only a
|
|---|
| 198 | // rough estimate.
|
|---|
| 199 | //
|
|---|
| 200 | Bool_t MRflEvtData::GetPixelContent(Double_t &val, Int_t idx, const MGeomCam &cam, Int_t type) const
|
|---|
| 201 | {
|
|---|
| 202 | //
|
|---|
| 203 | // sum the photons content in each pixel
|
|---|
| 204 | //
|
|---|
| 205 | val = 0;
|
|---|
| 206 |
|
|---|
| 207 | MHexagon hex(cam[idx]);
|
|---|
| 208 |
|
|---|
| 209 | MRflSinglePhoton *ph=NULL;
|
|---|
| 210 |
|
|---|
| 211 | TIter Next(&fList);
|
|---|
| 212 | while ((ph=(MRflSinglePhoton*)Next()))
|
|---|
| 213 | if (hex.DistanceToPrimitive(ph->GetX(), ph->GetY())<=0)
|
|---|
| 214 | val += cam.GetPixRatio(idx);
|
|---|
| 215 |
|
|---|
| 216 | return val>0;
|
|---|
| 217 | }
|
|---|
| 218 |
|
|---|
| 219 | // ------------------------------------------------------------------------
|
|---|
| 220 | //
|
|---|
| 221 | // You can call Draw() to add the photons to the current pad.
|
|---|
| 222 | // The photons are painted each tim ethe pad is updated.
|
|---|
| 223 | // Make sure that you use the right (world) coordinate system,
|
|---|
| 224 | // like created, eg. by the MHCamera histogram.
|
|---|
| 225 | //
|
|---|
| 226 | void MRflEvtData::Paint(Option_t *)
|
|---|
| 227 | {
|
|---|
| 228 | MRflSinglePhoton *ph=NULL;
|
|---|
| 229 |
|
|---|
| 230 | TMarker m;
|
|---|
| 231 | m.SetMarkerStyle(kFullDotMedium); // Gtypes.h
|
|---|
| 232 |
|
|---|
| 233 | TIter Next(&fList);
|
|---|
| 234 | while ((ph=(MRflSinglePhoton*)Next()))
|
|---|
| 235 | {
|
|---|
| 236 | m.SetX(ph->GetX());
|
|---|
| 237 | m.SetY(ph->GetY());
|
|---|
| 238 | m.Paint();
|
|---|
| 239 | }
|
|---|
| 240 | }
|
|---|
| 241 |
|
|---|