/* ======================================================================== *\ ! ! * ! * 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): Antonio Stamerra 1/2003 ! Author(s): Marcos Lopez 1/2003 ! ! Copyright: MAGIC Software Development, 2000-2003 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // // MTriggerLvl2Calc // // This is a task to calculate the 2nd level trigger selection // // parameters // // // // Input containers: // // MMcTriggerLvl2 // // // ///////////////////////////////////////////////////////////////////////////// #include "MMcTriggerLvl2Calc.h" #include "MMcTriggerLvl2.h" #include "MHMcTriggerLvl2.h" #include "MParList.h" #include "MLog.h" #include "MLogManip.h" #include "MMcEvt.hxx" #include "MMcTrig.hxx" #include "MMcRunHeader.hxx" #include "MGeomCam.h" ClassImp(MMcTriggerLvl2Calc); using namespace std; // -------------------------------------------------------------------------- // // Default constructor // // MMcTriggerLvl2Calc::MMcTriggerLvl2Calc(const char *name, const char *title) { fName = name ? name : "MMcTriggerLvl2Calc"; fTitle = title ? title : "Task to Fill the MMcTriggerLvl2 object"; } // -------------------------------------------------------------------------- // // PreProcess // // Int_t MMcTriggerLvl2Calc::PreProcess (MParList *pList) { // connect the raw data with this task fMcEvt = (MMcEvt*)pList->FindObject("MMcEvt"); if (!fMcEvt) { *fLog << err << dbginf << "MMcEvt not found... exit." << endl; return kFALSE; } fMcTrig = (MMcTrig*)pList->FindObject("MMcTrig"); if (!fMcTrig) { *fLog << err << dbginf << "MMcTrig not found... exit." << endl; return kFALSE; } fCam = (MGeomCam*)pList->FindObject("MGeomCam"); if (!fCam) { *fLog << dbginf << "MGeomCam not found (no geometry information available)... aborting." << endl; return kFALSE; } // Check if fCam is a Magic geometry: only MGeomCamMagic geometry and // geometries with 577 pixels are now accepted by MMcTriggerLvl2 if (fCam->GetNumPixels()!= 577) { *fLog << dbginf << "MGeomCam has a wrong geometry; only MAGIC geometry (577 pixels) is accepted by now... aborting" <FindObject("MMcTriggerLvl2"); if (!fMMcTriggerLvl2) { *fLog << err << dbginf << "MMcTriggerLvl2 not found... exit." << endl; return kFALSE; } fMHMcTriggerLvl2 = (MHMcTriggerLvl2*)pList->FindCreateObj("MHMcTriggerLvl2"); if (!fMHMcTriggerLvl2) { *fLog << err << dbginf << "MHMcTriggerLvl2 not found... exit." << endl; return kFALSE; } // Check if the variable fCompactNN has been correctly set; // accepted values for fCompactNN are (up to now) 2 and 3. if (fMMcTriggerLvl2->GetCompactNN()<2 || fMMcTriggerLvl2->GetCompactNN()>3) { *fLog << err << dbginf << "fCompactNN is not correctly set ("<GetCompactNN() <<") ... exit" <GetCompactNN() << " NN" <GetEnergy(fMcEvt); fMMcTriggerLvl2->SetLv1(fMcTrig); fMMcTriggerLvl2->CalcCompactPixels(fCam); fMMcTriggerLvl2->Calc(); fMMcTriggerLvl2->CalcTriggerPattern(fCam); return kTRUE; } // -------------------------------------------------------------------------- // // PostProcess : Display the histogram // !to be fixed: create an histogram class! // Int_t MMcTriggerLvl2Calc::PostProcess() { return kTRUE; }