/* ======================================================================== *\ ! ! * ! * 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, 12/2003 ! ! Copyright: MAGIC Software Development, 2000-2003 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MReportRun // // This is the class interpreting and storing the RUN-REPORT information. // // PRELIMINARY! // ////////////////////////////////////////////////////////////////////////////// #include "MReportRun.h" #include "MLogManip.h" #include "MAstro.h" ClassImp(MReportRun); using namespace std; // -------------------------------------------------------------------------- // // Default construtor. Initialize identifier to "RUN-REPORT" No subsystem // is expected. // MReportRun::MReportRun() : MReport("RUN-REPORT", kFALSE), fRunNumber(-1) { fName = "MReportRun"; fTitle = "Class for RUN-REPORT information"; } // -------------------------------------------------------------------------- // // Interprete the body of the RUN-REPORT string // Int_t MReportRun::InterpreteBody(TString &str, Int_t ver) { const Int_t ws = str.First(' '); if (ws<0) { *fLog << warn << "WARNING - Token not found." << endl; return kCONTINUE; } const TString tok=str(0, ws); str.Remove(0, ws); str = str.Strip(TString::kBoth); Int_t len, run; const Int_t n=sscanf(str.Data(), "%d %n", &run, &len); if (n!=1) { *fLog << warn << "WARNING - Wrong number of arguments." << endl; return kCONTINUE; } str.Remove(0, len); if (tok=="START") { if (fRunNumber!=-1) *fLog << warn << "WARNING - RUN-REPORT STOP missing for run #" << dec << fRunNumber << endl; fRunNumber = run; } if (tok=="STOP") { if (fRunNumber==-1) *fLog << warn << "WARNING - RUN-REPORT START missing for run #" << dec << fRunNumber << endl; fRunNumber = -1; } Ssiz_t pos = str.First(' '); if (pos<0) pos = str.Length(); fSourceName = str(0, pos+1); return kTRUE; }