/* ======================================================================== *\ ! ! * ! * This file is part of MARS, the MAGIC Analysis and Reconstruction ! * Software. It is distributed to you in the hope that it can be a useful ! * and timesaving tool in analysing Data of imaging Cerenkov telescopes. ! * It is distributed WITHOUT ANY WARRANTY. ! * ! * Permission to use, copy, modify and distribute this software and its ! * documentation for any purpose is hereby granted without fee, ! * provided that the above copyright notice appear in all copies and ! * that both that copyright notice and this permission notice appear ! * in supporting documentation. It is provided "as is" without express ! * or implied warranty. ! * ! ! ! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de) ! ! Copyright: MAGIC Software Development, 2000-2001 ! ! \* ======================================================================== */ /////////////////////////////////////////////////////////////////////////////// // // MRawEvtPixelIter // // class to iterate over all pixels of one event. // The calling is similar to a root iterator: // // MRawEvtData *evtdata; // must be filled with data from somewhere // MRawEvtPixelIter pixel(evtdata); // evtdata: ptr to event you want to iterate // // while (pixel.Next()) // { // // here you can access the actual time slices by using // // pixel.GetPixelId(); // // pixel.GetHiGainFadcSamples()[i]; // i is the number of the slice // // pixel.HasLoGain(); // check if pixel has // // pixel.GetLoGainFadcSamples()[i]; // i is the number of the slice // // // WARNING: Don't acces more time slices than available. // // Get the numbers by calling: evtdata->GetNum[Lo,Hi]GainSamples() // // This number is constant for one event // } // /////////////////////////////////////////////////////////////////////////////// #include "MRawEvtPixelIter.h" #include "MRawEvtData.h" #include "MArrayS.h" #include "MArrayB.h" ClassImp(MRawEvtPixelIter); // -------------------------------------------------------------------------- // // Return the number of stored pixels // Byte_t MRawEvtPixelIter::GetNumPixels() const { return fData->GetNumPixels(); } // -------------------------------------------------------------------------- // // It steps to the next pixel. If there is no next pixel NULL is returned. // If a next pixel where found, a pointer to the primary given (constructor) // data structur is returned. // MRawEvtData *MRawEvtPixelIter::Next() { // // if we are already at the last entry there is no 'next' entry anymore // if (fNumHiGainEntry==fData->fHiGainPixId->GetSize()) return NULL; // // if we are already at the last entry there is no 'next' entry anymore // if (fNumLoGainEntry != fData->fLoGainPixId->GetSize()) if (*fHiGainId == *fLoGainId) { // // if higainpixid and logainpixid of the actual pixel are // identical then we have to move the pointer to the next // entry in the lo gains // fNumLoGainEntry++; fLoGainId++; fLoGainPos += fData->GetNumLoGainSamples(); } // // here we have to move the pointer to the next entry in the hi gains // fNumHiGainEntry++; fHiGainId++; fHiGainPos += fData->GetNumHiGainSamples(); // // return a pointer to the 'source' class if we succeed // return fData; } // -------------------------------------------------------------------------- // // Reset the iteration. Jump to the first pixel. // void MRawEvtPixelIter::Reset() { // // set counter to zero // fNumLoGainEntry = 0; fNumHiGainEntry = 0; // // set pointer to first entry of arrays // fHiGainId = fData->fHiGainPixId->GetArray()-1; fLoGainId = fData->fLoGainPixId->GetArray()-1; fHiGainPos = fData->fHiGainFadcSamples->GetArray()-fData->GetNumHiGainSamples(); fLoGainPos = fData->fLoGainFadcSamples->GetArray()-fData->GetNumLoGainSamples(); } // -------------------------------------------------------------------------- // // Calls the draw-function of the actual pixel (see MRawEvtData::Draw) // void MRawEvtPixelIter::Draw(Option_t *t) { char *txt = new char[6+strlen(t)]; sprintf(txt, "%s%d", t, *fHiGainId); fData->Draw(txt); delete txt; } // -------------------------------------------------------------------------- // // returns the sum of all hi gain fadc samples of the actual pixel // ULong_t MRawEvtPixelIter::GetSumHiGainFadcSamples() const { // // return the sum of the hi gain samples of the present pixel // Byte_t *ptr = fHiGainPos; const Byte_t *end = ptr + fData->GetNumHiGainSamples(); ULong_t sum=0; do sum += *ptr++; while (ptr != end); return sum; } // -------------------------------------------------------------------------- // // returns the sum of all lo gain fadc samples of the actual pixel. // if no lo gain information is available 0 is returned. // ULong_t MRawEvtPixelIter::GetSumLoGainFadcSamples() const { // // return the sum of the lo gain samples of the present pixel // if (!HasLoGain()) return 0; Byte_t *ptr = fLoGainPos; const Byte_t *end = ptr + fData->GetNumLoGainSamples(); ULong_t sum=0; do sum += *ptr++; while (ptr != end); return sum; }