/* ======================================================================== *\ ! ! * ! * 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-2008 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MReportCC // // This is the class interpreting and storing the CC-REPORT information. // // From here maily weather station data is decoded such as // temperature, humidity, wind-speed and solar radiation // // Class Version 2: // ---------------- // + Float_t fUPSStatus; // arbitrary units (still not properly defined) // + Float_t fDifRubGPS; // [us] Difference between the Rubidium clock time and the time provided by the GPS receiver // // ////////////////////////////////////////////////////////////////////////////// #include "MReportCC.h" #include "MLogManip.h" #include "MParList.h" #include "MReportRec.h" #include "MCameraTH.h" #include "MCameraTD.h" #include "MCameraRecTemp.h" ClassImp(MReportCC); using namespace std; // -------------------------------------------------------------------------- // // Default construtor. Initialize identifier to "CC-REPORT" Report // is expected to have no 'subsystem' time. // MReportCC::MReportCC() : MReport("CC-REPORT", kFALSE) { fName = "MReportCC"; fTitle = "Class for CC-REPORT information"; } // -------------------------------------------------------------------------- // // FindCreate the following objects: // - MCameraTH // Bool_t MReportCC::SetupReading(MParList &plist) { fRecRep = (MReportRec*)plist.FindCreateObj("MReportRec"); if (!fRecRep) return kFALSE; fTH = (MCameraTH*)plist.FindCreateObj("MCameraTH"); if (!fTH) return kFALSE; fTD = (MCameraTD*)plist.FindCreateObj("MCameraTD"); if (!fTD) return kFALSE; fRecTemp = (MCameraRecTemp*)plist.FindCreateObj("MCameraRecTemp"); if (!fRecTemp) return kFALSE; return MReport::SetupReading(plist); } // -------------------------------------------------------------------------- // // Interprete the body of the CC-REPORT string // Bool_t MReportCC::InterpreteCC(TString &str, Int_t ver) { const Int_t skip = ver<200407270 ? 30 : 31; // Remove the 30/31 tokens of the subsystem status // table 12.1 p59 for (int i=0; i=200809030) { if (!CheckTag(str, "SCHEDULE ")) return kFALSE; str = str.Strip(TString::kBoth); // [Sourcename] sourcecategory const Ssiz_t pos1 = str.First(' '); if (pos1<0) { *fLog << warn << "WARNING - Wrong number of arguments (should be 1 or 2)." << endl; return kFALSE; } const TString str1 = str(0, pos1); str.Remove(0, pos1); str = str.Strip(TString::kBoth); if (!str1.IsDigit()) { const Ssiz_t pos2 = str.First(' '); if (pos2<0) { *fLog << warn << "WARNING - Wrong number of arguments (should be 1 or 2)." << endl; return kFALSE; } TString str2 = str(0, pos2); str.Remove(0, pos2); // Remove a leading minus. The negative numbers are error codes introduced // by Arehucas. It's only meant for the GRB monitor to change the priority // of its alerts. if (str2[0]=='-') str2.Remove(0, 1); if (!str2.IsDigit()) { *fLog << warn << "WARNING - Wrong type of second argument (obs. category): " << str2 << endl; return kFALSE; } } } return kTRUE; } // -------------------------------------------------------------------------- // // Interprete the body of the CC-REPORT string // Int_t MReportCC::InterpreteBody(TString &str, Int_t ver) { if (ver<200404070) { *fLog << err << "ERROR - MReportCC::InterpreteBody not prepared for "; *fLog << " report-files with version<200404070" << endl; return kFALSE; } if (!InterpreteCC(str, ver)) return kCONTINUE; if (ver<200805190) { fRecRep->InterpreteRec(str, ver, *fTH, *fTD, *fRecTemp); Copy(*fRecRep); fRecRep->SetReadyToSave(); } if (str.Strip(TString::kBoth)!=(TString)"OVER") { *fLog << warn << "WARNING - 'OVER' tag not found." << endl; return kCONTINUE; } return kTRUE; } // -------------------------------------------------------------------------- // // Print contents of report // void MReportCC::Print(Option_t *opt) const { *fLog << all << GetDescriptor() << ": Status=" << (int)GetState(); *fLog << " Hum=" << Form("%3.0f", fHumidity); *fLog << "% Temp=" << Form("%+3.0f", fTemperature); *fLog << "°C Wind=" << Form("%3.0f", fWindSpeed); *fLog << "km/h SolarRad=" << Form("%4.0f", fSolarRadiation) << "W/m^2" << endl; }