/* ======================================================================== *\ ! ! * ! * 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): Sebastian Raducci 12/2003 ! ! Copyright: MAGIC Software Development, 2002-2003 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MArrivalTimeCalc // // This is a task that calculates the arrival times of photons. // It returns the absolute maximum of the spline that interpolates // the FADC slices // // Input Containers: // MRawEvtData // // Output Containers: // MArrivalTime // MRawEvtData ////////////////////////////////////////////////////////////////////////////// #include "MArrivalTime.h" #include "MArrivalTimeCalc.h" #include "MParList.h" #include "MLog.h" #include "MLogManip.h" #include "MGeomCam.h" #include "MMcRunHeader.hxx" #include "MRawRunHeader.h" #include "MRawEvtData.h" // MRawEvtData::GetNumPixels #include "MCameraData.h" #include "MRawEvtPixelIter.h" ClassImp(MArrivalTimeCalc); using namespace std; // -------------------------------------------------------------------------- // // Default constructor. // MArrivalTimeCalc::MArrivalTimeCalc(const char *name, const char *title) { fName = name ? name : "MArrivalTimeCalc"; fTitle = title ? title : "Calculate photons arrival time"; // AddToBranchList("MRawEvtData.fHiGainPixId"); // AddToBranchList("MRawEvtData.fLoGainPixId"); // AddToBranchList("MRawEvtData.fHiGainFadcSamples"); // AddToBranchList("MRawEvtData.fLoGainFadcSamples"); } // -------------------------------------------------------------------------- // // The PreProcess searches for the following input containers: // - MRawRunHeader // - MRawEvtData // - MArrivalTime // - MGeomCam // // The following output containers are also searched and created if // they were not found: // - MArrivalTime // - MRawEvtData // Int_t MArrivalTimeCalc::PreProcess(MParList *pList) { fRunHeader = (MRawRunHeader*)pList->FindObject("MRawRunHeader"); if (!fRunHeader) { *fLog << err << "MRawRunHeader not found... aborting." << endl; return kFALSE; } fRawEvt = (MRawEvtData*)pList->FindObject(AddSerialNumber("MRawEvtData")); if (!fRawEvt) { *fLog << err << "MRawEvtData not found... aborting." << endl; return kFALSE; } fGeom = (MGeomCam*)pList->FindObject("MGeomCam"); if (!fGeom) { *fLog << err << "MGeomCam not found... aborting." << endl; return kFALSE; } fArrTime = (MArrivalTime*)pList->FindCreateObj(AddSerialNumber("MArrivalTime")); if (!fArrTime) return kFALSE; return kTRUE; } // -------------------------------------------------------------------------- // Evaluation of the mean arrival times (spline interpolation) // per pixel and store them in the MArrivalTime container. // Int_t MArrivalTimeCalc::Process() { MRawEvtPixelIter pixel(fRawEvt); // Every pixel is set to -1 fArrTime->CleanArray((const MGeomCam&) *fGeom); while (pixel.Next()) { const UInt_t idx = pixel.GetPixelId(); // If pixel is saturated we use LoGains if (pixel.GetMaxHiGainSample() == 0xff && pixel.HasLoGain()) { const Byte_t *ptr = pixel.GetLoGainSamples(); const Short_t nSlice = fRawEvt->GetNumLoGainSamples(); fArrTime->Calc(ptr, nSlice, idx, (const MGeomCam&) *fGeom); } // Use HiGains else { const Byte_t *ptr = pixel.GetHiGainSamples(); const Short_t nSlice = fRawEvt->GetNumHiGainSamples(); fArrTime->Calc(ptr, nSlice, idx, (const MGeomCam&) *fGeom); } // If pixel is saturated and hasn't lo gains we do nothing, it's value remains -1 } fArrTime->SetReadyToSave(); return kTRUE; }