/* ======================================================================== *\ ! ! * ! * 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): Thomas Bretz, 5/2003 ! Author(s): Florian Goebel 11/2005 ! ! Copyright: MAGIC Software Development, 2000-2006 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MCameraTH // // Class Version 2: // ---------------- // + Bool_t fIsValid; // fTH contains valid information // ///////////////////////////////////////////////////////////////////////////// #include "MCameraTH.h" #include #include "MLog.h" #include "MLogManip.h" #include "MCameraTD.h" ClassImp(MCameraTH); using namespace std; // -------------------------------------------------------------------------- // // Default constructor. // MCameraTH::MCameraTH(Int_t size, const char *name, const char *title) : fTH(size), fIsValid(kTRUE) { fName = name ? name : "MCameraTH"; fTitle = title ? title : "Storage container for the pixel discriminator threshold"; } // -------------------------------------------------------------------------- // // Interprete the TH (discriminator thresholds) part of the report // Bool_t MCameraTH::InterpreteTH(TString &str, Int_t ver, MCameraTD &td) { // Skip the TH (discriminator thresholds) part of the report (for old // CC files with wrong or nonsense number of TH-Bytes) if (ver<200507190) { Ssiz_t pr = str.First(' '); if (pr<0) { *fLog << warn << "WARNING - No TH information found at all." << endl; return kFALSE; } if (pr!=1154) { td.Invalidate(); str.Remove(0, pr); str=str.Strip(TString::kLeading); return kTRUE; } } const char *pos = str.Data(); const char *end = str.Data()+577*2; Int_t i=0; while (pos