/* ======================================================================== *\ ! ! * ! * 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. // For now, it returns the number of time slice containig the maximum value. // // P R E L I M I N A R Y // Other more sophisticated methods have to be implemented. // // 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 (for now it stands for the maximum in slices units) // per pixel and store them in the MArrivalTime container. // Int_t MArrivalTimeCalc::Process() { MRawEvtPixelIter pixel(fRawEvt); //fArrTime->Calc((const MRawEvtData&) *fRawEvt,(const MGeomCam&) *fGeom); //fArrTime->SetReadyToSave(); //while (pixel.Next()){;} return kTRUE; }