/* ======================================================================== *\ ! ! * ! * 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): Wolfgang Wittek 03/2003 ! ! Copyright: MAGIC Software Development, 2000-2003 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // // MCT1PointingCorrCalc // // // // This is a task to do the CT1 pointing correction // // // ///////////////////////////////////////////////////////////////////////////// #include "MCT1PointingCorrCalc.h" #include "MParList.h" #include "MMcEvt.hxx" #include "MSrcPosCam.h" #include "MGeomCam.h" #include "MParameters.h" #include "MLog.h" #include "MLogManip.h" ClassImp(MCT1PointingCorrCalc); // -------------------------------------------------------------------------- // // Default constructor. // MCT1PointingCorrCalc::MCT1PointingCorrCalc(const char *srcname, const char *name, const char *title) : fSrcName(srcname) { fName = name ? name : "MCT1PointingCorrCalc"; fTitle = title ? title : "Task to do the CT1 pointing correction"; } // -------------------------------------------------------------------------- // Bool_t MCT1PointingCorrCalc::PreProcess(MParList *pList) { MGeomCam *geom = (MGeomCam*)pList->FindObject("MGeomCam"); if (!geom) *fLog << warn << GetDescriptor() << ": No Camera Geometry available. Using mm-scale for histograms." << endl; else { fMm2Deg = geom->GetConvMm2Deg(); } fMcEvt = (MMcEvt*)pList->FindObject("MMcEvt"); if (!fMcEvt) { *fLog << err << "MMcEvt not found... aborting." << endl; return kFALSE; } fHourAngle = (MParameterD*)pList->FindObject("HourAngle", "MParameterD"); if (!fHourAngle) { *fLog << err << "HourAngle [MParameterD] not found... aborting." << endl; return kFALSE; } fSrcPos = (MSrcPosCam*)pList->FindObject(fSrcName, "MSrcPosCam"); if (!fSrcPos) { *fLog << err << fSrcName << " [MSrcPosCam] not found... aborting." << endl; return kFALSE; } return kTRUE; } // -------------------------------------------------------------------------- // // Do the pointing correction // // the parametrization is for Mkn421 2001 data (Daniel Kranich) // Bool_t MCT1PointingCorrCalc::Process() { // fhourangle is the hour angle [degrees] // (cx, cy) is the source position in the camera [mm] // Float_t fhourangle = fHourAngle->GetVal(); //*fLog << "MCT1PointingCorrCalc::Process; fhourangle = " // << fhourangle << endl; Float_t cx = -0.05132 - 0.001064 * fhourangle - 3.530e-6 * fhourangle * fhourangle; cx /= fMm2Deg; Float_t cy = -0.04883 - 0.0003175* fhourangle - 2.165e-5 * fhourangle * fhourangle; cy /= fMm2Deg; fSrcPos->SetXY(cx, cy); //*fLog << "MCT1PointingCorrCal::Process; fhourangle, cx, cy, fMm2Deg = " // << fhourangle << ", " << cx << ", " << cy << ", " // << fMm2Deg << endl; fSrcPos->SetReadyToSave(); return kTRUE; }