| 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): Markus Gaug, 05/2004 <mailto:markus@ifae.es>
|
|---|
| 19 | !
|
|---|
| 20 | ! Copyright: MAGIC Software Development, 2000-2004
|
|---|
| 21 | !
|
|---|
| 22 | !
|
|---|
| 23 | \* ======================================================================== */
|
|---|
| 24 |
|
|---|
| 25 | //////////////////////////////////////////////////////////////////////////////
|
|---|
| 26 | //
|
|---|
| 27 | // MExtractTimeAndCharge
|
|---|
| 28 | //
|
|---|
| 29 | // Base class for the signal extractors which extract the arrival time
|
|---|
| 30 | // and the signal at the same time. Uses the functions
|
|---|
| 31 | // FindTimeAndChargeHiGain() and FindTimeAndChargeLoGain() to extract the signal and
|
|---|
| 32 | // substract the pedestal value.
|
|---|
| 33 | //
|
|---|
| 34 | // The following figure gives and example of possible inheritance trees.
|
|---|
| 35 | // An extractor class can inherit from each of the following base classes:
|
|---|
| 36 | // - MExtractor
|
|---|
| 37 | // - MExtractTime
|
|---|
| 38 | // - MExtractTimeAndCharge
|
|---|
| 39 | //
|
|---|
| 40 | //Begin_Html
|
|---|
| 41 | /*
|
|---|
| 42 | <img src="images/ExtractorClasses.gif">
|
|---|
| 43 | */
|
|---|
| 44 | //End_Html
|
|---|
| 45 | //
|
|---|
| 46 | // The following variables have to be set by the derived class and
|
|---|
| 47 | // do not have defaults:
|
|---|
| 48 | // - fNumHiGainSamples
|
|---|
| 49 | // - fNumLoGainSamples
|
|---|
| 50 | // - fSqrtHiGainSamples
|
|---|
| 51 | // - fSqrtLoGainSamples
|
|---|
| 52 | //
|
|---|
| 53 | // Input Containers:
|
|---|
| 54 | // MRawEvtData
|
|---|
| 55 | // MRawRunHeader
|
|---|
| 56 | // MPedestalCam
|
|---|
| 57 | //
|
|---|
| 58 | // Output Containers:
|
|---|
| 59 | // MArrivalTimeCam
|
|---|
| 60 | // MExtractedSignalCam
|
|---|
| 61 | //
|
|---|
| 62 | //////////////////////////////////////////////////////////////////////////////
|
|---|
| 63 | #include "MExtractTimeAndCharge.h"
|
|---|
| 64 |
|
|---|
| 65 | #include "MLog.h"
|
|---|
| 66 | #include "MLogManip.h"
|
|---|
| 67 |
|
|---|
| 68 | #include "MParList.h"
|
|---|
| 69 |
|
|---|
| 70 | #include "MRawEvtData.h"
|
|---|
| 71 | #include "MRawEvtPixelIter.h"
|
|---|
| 72 | #include "MRawRunHeader.h"
|
|---|
| 73 |
|
|---|
| 74 | #include "MPedestalCam.h"
|
|---|
| 75 | #include "MPedestalPix.h"
|
|---|
| 76 |
|
|---|
| 77 | #include "MArrivalTimeCam.h"
|
|---|
| 78 | #include "MArrivalTimePix.h"
|
|---|
| 79 |
|
|---|
| 80 | #include "MExtractedSignalCam.h"
|
|---|
| 81 | #include "MExtractedSignalPix.h"
|
|---|
| 82 |
|
|---|
| 83 | ClassImp(MExtractTimeAndCharge);
|
|---|
| 84 |
|
|---|
| 85 | using namespace std;
|
|---|
| 86 |
|
|---|
| 87 | const Float_t MExtractTimeAndCharge::fgLoGainStartShift = -2.8;
|
|---|
| 88 | const Byte_t MExtractTimeAndCharge::fgLoGainSwitch = 120;
|
|---|
| 89 | // --------------------------------------------------------------------------
|
|---|
| 90 | //
|
|---|
| 91 | // Default constructor.
|
|---|
| 92 | //
|
|---|
| 93 | // Sets:
|
|---|
| 94 | // - fLoGainFirstSave to 0
|
|---|
| 95 | // - fWindowSizeHiGain and fWindowSizeLoGain to 0
|
|---|
| 96 | // - fLoGainStartShift to fgLoGainStartShift+fgOffsetLoGain
|
|---|
| 97 | // - fLoGainSwitch to fgLoGainSwitch
|
|---|
| 98 | //
|
|---|
| 99 | MExtractTimeAndCharge::MExtractTimeAndCharge(const char *name, const char *title)
|
|---|
| 100 | : fLoGainFirstSave(0), fWindowSizeHiGain(0), fWindowSizeLoGain(0)
|
|---|
| 101 | {
|
|---|
| 102 | fName = name ? name : "MExtractTimeAndCharge";
|
|---|
| 103 | fTitle = title ? title : "Base class for signal and time extractors";
|
|---|
| 104 |
|
|---|
| 105 | SetLoGainStartShift();
|
|---|
| 106 | SetLoGainSwitch();
|
|---|
| 107 | }
|
|---|
| 108 |
|
|---|
| 109 | // --------------------------------------------------------------------------
|
|---|
| 110 | //
|
|---|
| 111 | // The PreProcess searches for the following input containers:
|
|---|
| 112 | // - MRawEvtData
|
|---|
| 113 | // - MRawRunHeader
|
|---|
| 114 | // - MPedestalCam
|
|---|
| 115 | //
|
|---|
| 116 | // The following output containers are also searched and created if
|
|---|
| 117 | // they were not found:
|
|---|
| 118 | //
|
|---|
| 119 | // - MExtractedSignalCam
|
|---|
| 120 | // - MArrivalTimeCam
|
|---|
| 121 | //
|
|---|
| 122 | Int_t MExtractTimeAndCharge::PreProcess(MParList *pList)
|
|---|
| 123 | {
|
|---|
| 124 |
|
|---|
| 125 | if (!MExtractTime::PreProcess(pList))
|
|---|
| 126 | return kFALSE;
|
|---|
| 127 |
|
|---|
| 128 | fSignals = (MExtractedSignalCam*)pList->FindCreateObj("MExtractedSignalCam",AddSerialNumber(fNameSignalCam));
|
|---|
| 129 | if (!fSignals)
|
|---|
| 130 | return kFALSE;
|
|---|
| 131 |
|
|---|
| 132 | *fLog << flush << inf;
|
|---|
| 133 | Print();
|
|---|
| 134 |
|
|---|
| 135 | return kTRUE;
|
|---|
| 136 | }
|
|---|
| 137 |
|
|---|
| 138 | // --------------------------------------------------------------------------
|
|---|
| 139 | //
|
|---|
| 140 | // The ReInit calls:
|
|---|
| 141 | // - MExtractor::ReInit()
|
|---|
| 142 | //
|
|---|
| 143 | // Call:
|
|---|
| 144 | // - MArrivalTimeCam::SetUsedFADCSlices(fHiGainFirst, fHiGainLast, fNumHiGainSamples,
|
|---|
| 145 | // fLoGainFirst, fLoGainLast, fNumLoGainSamples);
|
|---|
| 146 | // - InitArrays();
|
|---|
| 147 | //
|
|---|
| 148 | Bool_t MExtractTimeAndCharge::ReInit(MParList *pList)
|
|---|
| 149 | {
|
|---|
| 150 |
|
|---|
| 151 | if (!MExtractTime::ReInit(pList))
|
|---|
| 152 | return kFALSE;
|
|---|
| 153 |
|
|---|
| 154 | if (!InitArrays())
|
|---|
| 155 | return kFALSE;
|
|---|
| 156 |
|
|---|
| 157 | if (fSignals)
|
|---|
| 158 | fSignals->SetUsedFADCSlices(fHiGainFirst, fHiGainLast+fHiLoLast, fNumHiGainSamples,
|
|---|
| 159 | fLoGainFirst, fLoGainLast, fNumLoGainSamples);
|
|---|
| 160 |
|
|---|
| 161 |
|
|---|
| 162 | return kTRUE;
|
|---|
| 163 | }
|
|---|
| 164 |
|
|---|
| 165 | // --------------------------------------------------------------------------
|
|---|
| 166 | //
|
|---|
| 167 | // Calculate the integral of the FADC time slices and store them as a new
|
|---|
| 168 | // pixel in the MArrivalTimeCam container.
|
|---|
| 169 | // Calculate the integral of the FADC time slices and store them as a new
|
|---|
| 170 | // pixel in the MExtractedSignalCam container.
|
|---|
| 171 | // The functions FindTimeAndChargeHiGain() and FindTimeAndChargeLoGain() are
|
|---|
| 172 | // supposed to extract the signal themselves.
|
|---|
| 173 | //
|
|---|
| 174 | Int_t MExtractTimeAndCharge::Process()
|
|---|
| 175 | {
|
|---|
| 176 |
|
|---|
| 177 | MRawEvtPixelIter pixel(fRawEvt);
|
|---|
| 178 |
|
|---|
| 179 | while (pixel.Next())
|
|---|
| 180 | {
|
|---|
| 181 | //
|
|---|
| 182 | // Find signal in hi- and lo-gain
|
|---|
| 183 | //
|
|---|
| 184 | Float_t sumhi =0., deltasumhi =0; // Set hi-gain of MExtractedSignalPix valid
|
|---|
| 185 | Float_t timehi=0., deltatimehi=0; // Set hi-gain of MArrivalTimePix valid
|
|---|
| 186 | Byte_t sathi=0;
|
|---|
| 187 |
|
|---|
| 188 | // Initialize fMaxBinContent for the case, it gets not set by the derived class
|
|---|
| 189 | fMaxBinContent = fLoGainSwitch + 1;
|
|---|
| 190 |
|
|---|
| 191 | const Int_t pixidx = pixel.GetPixelId();
|
|---|
| 192 | const MPedestalPix &ped = (*fPedestals)[pixidx];
|
|---|
| 193 | const Bool_t higainabflag = pixel.HasABFlag();
|
|---|
| 194 |
|
|---|
| 195 | FindTimeAndChargeHiGain(pixel.GetHiGainSamples()+fHiGainFirst, pixel.GetLoGainSamples(),
|
|---|
| 196 | sumhi, deltasumhi,
|
|---|
| 197 | timehi, deltatimehi,
|
|---|
| 198 | sathi, ped, higainabflag);
|
|---|
| 199 |
|
|---|
| 200 | // Make sure that in cases the time couldn't be correctly determined
|
|---|
| 201 | // more meaningfull default values are assigned
|
|---|
| 202 | if (timehi<0)
|
|---|
| 203 | timehi = -1;
|
|---|
| 204 | if (timehi>pixel.GetNumHiGainSamples())
|
|---|
| 205 | timehi = pixel.GetNumHiGainSamples();
|
|---|
| 206 |
|
|---|
| 207 | Float_t sumlo =0., deltasumlo =-1.; // invalidate logain of MExtractedSignalPix
|
|---|
| 208 | Float_t timelo=0., deltatimelo=-1; // invalidate logain of MArrivalTimePix
|
|---|
| 209 | Byte_t satlo=0;
|
|---|
| 210 |
|
|---|
| 211 | //
|
|---|
| 212 | // Adapt the low-gain extraction range from the obtained high-gain time
|
|---|
| 213 | //
|
|---|
| 214 | if (pixel.HasLoGain() && (fMaxBinContent > fLoGainSwitch) )
|
|---|
| 215 | {
|
|---|
| 216 | deltasumlo = 0; // make logain of MExtractedSignalPix valid
|
|---|
| 217 | deltatimelo = 0; // make logain of MArrivalTimePix valid
|
|---|
| 218 |
|
|---|
| 219 | fLoGainFirstSave = fLoGainFirst;
|
|---|
| 220 | const Byte_t logainstart = sathi
|
|---|
| 221 | ? sathi + (Int_t)fLoGainStartShift
|
|---|
| 222 | : (Byte_t)(timehi + fLoGainStartShift);
|
|---|
| 223 | fLoGainFirst = logainstart > fLoGainFirstSave ? logainstart : fLoGainFirstSave;
|
|---|
| 224 |
|
|---|
| 225 | if ( fLoGainFirst < fLoGainLast )
|
|---|
| 226 | {
|
|---|
| 227 | const Bool_t logainabflag = (higainabflag + pixel.GetNumHiGainSamples()) & 0x1;
|
|---|
| 228 | FindTimeAndChargeLoGain(pixel.GetLoGainSamples()+fLoGainFirst,
|
|---|
| 229 | sumlo, deltasumlo,
|
|---|
| 230 | timelo, deltatimelo,
|
|---|
| 231 | satlo, ped, logainabflag);
|
|---|
| 232 | }
|
|---|
| 233 | fLoGainFirst = fLoGainFirstSave;
|
|---|
| 234 |
|
|---|
| 235 | // Make sure that in cases the time couldn't be correctly determined
|
|---|
| 236 | // more meaningfull default values are assigned
|
|---|
| 237 | if (timelo<0)
|
|---|
| 238 | timelo = -1;
|
|---|
| 239 | if (timelo>pixel.GetNumLoGainSamples())
|
|---|
| 240 | timelo = pixel.GetNumLoGainSamples();
|
|---|
| 241 | }
|
|---|
| 242 |
|
|---|
| 243 | MExtractedSignalPix &pix = (*fSignals)[pixidx];
|
|---|
| 244 | MArrivalTimePix &tix = (*fArrTime)[pixidx];
|
|---|
| 245 | pix.SetExtractedSignal(sumhi, deltasumhi,sumlo, deltasumlo);
|
|---|
| 246 | pix.SetGainSaturation(sathi, sathi, satlo);
|
|---|
| 247 |
|
|---|
| 248 | tix.SetArrivalTime(timehi, deltatimehi, timelo-fOffsetLoGain, deltatimelo);
|
|---|
| 249 | tix.SetGainSaturation(sathi, sathi, satlo);
|
|---|
| 250 |
|
|---|
| 251 | } /* while (pixel.Next()) */
|
|---|
| 252 |
|
|---|
| 253 | fArrTime->SetReadyToSave();
|
|---|
| 254 | fSignals->SetReadyToSave();
|
|---|
| 255 |
|
|---|
| 256 | return kTRUE;
|
|---|
| 257 | }
|
|---|
| 258 |
|
|---|
| 259 | // --------------------------------------------------------------------------
|
|---|
| 260 | //
|
|---|
| 261 | // In addition to the resources of the base-class MExtractor:
|
|---|
| 262 | // MJPedestal.MExtractor.LoGainStartShift: -2.8
|
|---|
| 263 | //
|
|---|
| 264 | Int_t MExtractTimeAndCharge::ReadEnv(const TEnv &env, TString prefix, Bool_t print)
|
|---|
| 265 | {
|
|---|
| 266 | Bool_t rc = kFALSE;
|
|---|
| 267 |
|
|---|
| 268 | if (IsEnvDefined(env, prefix, "LoGainStartShift", print))
|
|---|
| 269 | {
|
|---|
| 270 | fLoGainStartShift = GetEnvValue(env, prefix, "LoGainStartShift", fLoGainStartShift);
|
|---|
| 271 | rc = kTRUE;
|
|---|
| 272 | }
|
|---|
| 273 |
|
|---|
| 274 | if (IsEnvDefined(env, prefix, "LoGainSwitch", print))
|
|---|
| 275 | {
|
|---|
| 276 | fLoGainSwitch = GetEnvValue(env, prefix, "LoGainSwitch", fLoGainSwitch);
|
|---|
| 277 | rc = kTRUE;
|
|---|
| 278 | }
|
|---|
| 279 |
|
|---|
| 280 | return MExtractTime::ReadEnv(env, prefix, print) ? kTRUE : rc;
|
|---|
| 281 | }
|
|---|
| 282 |
|
|---|
| 283 | void MExtractTimeAndCharge::Print(Option_t *o) const
|
|---|
| 284 | {
|
|---|
| 285 | if (IsA()==Class())
|
|---|
| 286 | *fLog << GetDescriptor() << ":" << endl;
|
|---|
| 287 |
|
|---|
| 288 | *fLog << dec;
|
|---|
| 289 | *fLog << " Taking " << fWindowSizeHiGain
|
|---|
| 290 | << " HiGain samples from slice " << (Int_t)fHiGainFirst
|
|---|
| 291 | << " to " << (Int_t)(fHiGainLast+fHiLoLast) << " incl" << endl;
|
|---|
| 292 | *fLog << " Taking " << fWindowSizeLoGain
|
|---|
| 293 | << " LoGain samples from slice " << (Int_t)fLoGainFirst
|
|---|
| 294 | << " to " << (Int_t)fLoGainLast << " incl" << endl;
|
|---|
| 295 |
|
|---|
| 296 | *fLog << " LoGainStartShift: " << fLoGainStartShift << endl;
|
|---|
| 297 | *fLog << " LoGainSwitch: " << (Int_t)fLoGainSwitch << endl;
|
|---|
| 298 | MExtractTime::Print(o);
|
|---|
| 299 | }
|
|---|