/* ======================================================================== *\ ! ! * ! * 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): Harald Kornmayer 1/2001 (harald@mppmu.mpg.de) ! Author(s): Thomas Bretz 12/2000 (tbretz@uni-sw.gwdg.de) ! ! Copyright: MAGIC Software Development, 2000-2001 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MFillHFadc // // This task fill the n time slices from all pixels // (stored in a MRawEvtData container) into histograms. // This histograms (one per pixel) are stored in MHFadcCam, MHFadcPix // ////////////////////////////////////////////////////////////////////////////// #include "MFillHFadc.h" #include "MLog.h" #include "MLogManip.h" #include "MParList.h" #include "MHFadcCam.h" #include "MRawEvtData.h" #include "MRawEvtPixelIter.h" ClassImp(MFillHFadc) // -------------------------------------------------------------------------- MFillHFadc::MFillHFadc (const char *name, const char *title) : fRawEvtData(NULL) { *fName = name ? name : "MFillHFadc"; *fTitle = title ? title : "Task to fill the adc spectra with raw data"; } // -------------------------------------------------------------------------- // // The PrProcess function checks for the existance of all necessary // parameter containers // Bool_t MFillHFadc::PreProcess (MParList *pList) { // // check if all necessary input containers are existing // fRawEvtData = (MRawEvtData*)pList->FindCreateObj("MRawEvtData"); if (!fRawEvtData) { *fLog << dbginf << " Error: MRawEvtData not found... exit." << endl; return kFALSE; } // // check if the output containers are existing, if not craete them // fHistos = (MHFadcCam*)pList->FindCreateObj("MHFadcCam"); if (!fHistos) return kFALSE; return kTRUE; } // -------------------------------------------------------------------------- // // This process function loops over all pixels in an MRawEvtData // event and fills the values into histograms // Bool_t MFillHFadc::Process() { // loop over the pixels and fill the values in the histograms MRawEvtPixelIter pixel(fRawEvtData); const Int_t nhisamples = fRawEvtData->GetNumHiGainSamples() ; const Int_t nlosamples = fRawEvtData->GetNumLoGainSamples() ; while ( pixel.Next() ) { const UInt_t id = pixel.GetPixelId(); for (Int_t i=0; iFillHi(id, pixel.GetHiGainFadcSamples()[i]); if (!pixel.HasLoGain()) continue; for (Int_t i=0; iFillLo(id, pixel.GetLoGainFadcSamples()[i]); } return kTRUE; } Bool_t MFillHFadc::PostProcess() { fHistos->SetReadyToSave(); return kTRUE; }