/* ======================================================================== *\ ! ! * ! * 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/2000 ! ! Copyright: MAGIC Software Development, 2000-2004 ! ! \* ======================================================================== */ ///////////////////////////////////////////////////////////////////////////// // // MRawRunHeader // // Root storage container for the RUN HEADER information // // // RAW DATA FORMAT VERSION // ======================= // // Format Version 6: // ----------------- // + added CameraVersion // + added TelescopeNumber // + added ObservationMode // + added dummies for TelescopeRa/Dec // // Format Version 5: // ----------------- // - now the sub millisecond information of the time is valid and decoded // which enhances the precision from 51.2us to 200ns // // Format Version 4: // ----------------- // - added support for pixels with negative IDs // // Format Version 3: // ----------------- // - ??? // // Format Version 2: // ----------------- // - removed mjd from data // - added start time // - added stop time // // // MRawRunHeader CLASS VERSION // =========================== // // Class Version 4: // ----------------- // - added fCameraVersion // - added fTelescopeNumber // - changed length of fProjectName to 101 // - changed length of fSourceName to 81 // // Class Version 3: // ---------------- // - enhanced SourceName and ProjectName by one character, because // without telling us the guranteed trailing \0-character has // skipped // // Class Version 2: // ---------------- // - removed fMJD, fYear, fMonth, fDay // - added fRunStart // - added fRunStop // // Class Version 1: // ---------------- // - first implementation // //////////////////////////////////////////////////////////////////////////// #include "MRawRunHeader.h" #include #include #include "MLog.h" #include "MLogManip.h" #include "MArrayS.h" ClassImp(MRawRunHeader); using namespace std; const UShort_t MRawRunHeader::kMagicNumber = 0xc0c0; const Byte_t MRawRunHeader::kMaxFormatVersion = 6; // -------------------------------------------------------------------------- // // Default constructor. Creates array which stores the pixel assignment. // // MRawRunHeader::MRawRunHeader(const char *name, const char *title) : fPixAssignment(NULL) { fName = name ? name : "MRawRunHeader"; fTitle = title ? title : "Raw Run Header Information"; fPixAssignment = new MArrayS(0); fFormatVersion=0; fSoftVersion=0; fTelescopeNumber=0; fCameraVersion=0; fRunType=kRTNone; // use 0xffff for invalidation, 0 means: Data run fRunNumber=0; memset(fProjectName, 0, 101); memset(fSourceName, 0, 81); memset(fObservationMode, 0, 61); fSourceEpochChar[0]=0; fSourceEpochDate=0; fNumCrates=0; fNumPixInCrate=0; fNumSamplesLoGain=0; fNumSamplesHiGain=0; fNumEvents=0; } // -------------------------------------------------------------------------- // // Destructor. Deletes the 'pixel-assignment-array' // MRawRunHeader::~MRawRunHeader() { delete fPixAssignment; } // -------------------------------------------------------------------------- // // Swap the assignment of the pixels with hardware id id0 and id1 // Bool_t MRawRunHeader::SwapAssignment(Short_t id0, Short_t id1) { const Int_t n = fPixAssignment->GetSize(); // Look-up-table UShort_t *lut = fPixAssignment->GetArray(); // Search for one of the hardware indices to get exchanged int i; for (i=0; i // Date: Sun Sep 25 2005 - 05:13:19 CEST // // [...] // - problem 2: pixels were swaped // - cause: opical fibers were wrongly connected to receiver board // 554 <-> 559 // 555 <-> 558 // 556 <-> 557 // - action: reconnect correctly // - result: ok now // - comment: I don't know when this error was introduced, so backward // correction of the data is difficult. // Fortunately the effect is not too large since the affected 6 pixels are // on the outermost edge of the camera // Since this board has special pixels the optical fibers have been // unplugged several times. // !!!!! Whenever you unplug and reconnect optical fibers make really !!!!! // !!!!! sure you connect them back correctly. !!!!! // !!!!! Always contact me before you do so and if you have any doubts !!!!! // !!!!! how to reconnect the fibers ask me. !!!!! // These swapped pixels have only been found by chance when doing the // flatfielding. // [...] // Bool_t MRawRunHeader::FixAssignment() { if (fRunNumber<53300 || fRunNumber>68754) return kTRUE; if (!SwapAssignment(554, 559)) return kFALSE; if (!SwapAssignment(555, 558)) return kFALSE; if (!SwapAssignment(556, 557)) return kFALSE; return kTRUE; } // -------------------------------------------------------------------------- // // Read in one run header from the binary file // Bool_t MRawRunHeader::ReadEvt(istream& fin) { // // read one RUN HEADER from the input stream // fMagicNumber = 0; fin.read((char*)&fMagicNumber, 2); // Total=2 // // check whether the the file has the right file type or not // if (fMagicNumber != kMagicNumber && fMagicNumber != kMagicNumber+1) { *fLog << err << "ERROR - Wrong Magic Number (0x" << hex << fMagicNumber << "): Not a Magic File!" << endl; return kFALSE; } if (fMagicNumber == kMagicNumber+1) *fLog << warn << "WARNING - This file maybe broken (0xc0c1) - DAQ didn't close it correctly!" << endl; Byte_t dummy[16]; // ----- File format version ----- fin.read((char*)&fFormatVersion, 2); // Total=4 if (fFormatVersion>kMaxFormatVersion) { *fLog << err << "ERROR - File format V" << fFormatVersion << " not implemented!" << endl; return kFALSE; } // ----- DAQ software format version ----- fin.read((char*)&fSoftVersion, 2); // Total=6 // ----- Camera geometry and telescope number ----- if (fFormatVersion>5) { fin.read((char*)&fCameraVersion, 2); // (+2) fin.read((char*)&fTelescopeNumber, 2); // (+2) } // Maybe we should set fCameraVersion and fTelescopeNumber to 1 // in case of fFormatVersion<6 // ----- Run information ----- fin.read((char*)&fRunType, 2); // Total=8 fin.read((char*)&fRunNumber, 4); // Total=12 fin.read((char*)&fProjectName, fFormatVersion>5?100:22); // Total=34 (+78) fin.read((char*)&fSourceName, fFormatVersion>5? 80:12); // Total=46 (+58) if (fFormatVersion>5) fin.read((char*)fObservationMode, 60); // (+60) // Maybe we should set fObservationMode to something // in case of fFormatVersion<6 // ----- Source position ----- if (fFormatVersion>5) { fin.read((char*)dummy, 4); // F32 SourceRA; Total=48 fin.read((char*)dummy, 4); // F32 SourceDEC; Total=52 } // Maybe we should set these to something // in case of fFormatVersion<6 fin.read((char*)dummy, 4); // F32 TelescopeRA; (+4) fin.read((char*)dummy, 4); // F32 TelescopeDEC; (+4) fin.read((char*)&fSourceEpochChar, 2); // Total=56 fin.read((char*)&fSourceEpochDate, 2); // Total=58 // ----- Old Start time ----- if (fFormatVersion<2) // Total += 10 { UShort_t y, m, d; fin.read((char*)dummy, 4); // Former fMJD[4], fin.read((char*)&y, 2); // Former fDateYear[2] fin.read((char*)&m, 2); // Former fDateMonth[2] fin.read((char*)&d, 2); // Former fDateDay[2] fRunStart.Set(y, m, d, 0, 0, 0, 0); } // ----- Data Geometry ----- fin.read((char*)&fNumCrates, 2); // Total=60 fin.read((char*)&fNumPixInCrate, 2); // Total=62 fin.read((char*)&fNumSamplesLoGain, 2); // Total=64 fin.read((char*)&fNumSamplesHiGain, 2); // Total=66 // ----- Number of events ----- fin.read((char*)&fNumEvents, 4); // Total=70 // ----- Start/Stop time ----- if (fFormatVersion>1) { fRunStart.ReadBinary(fin); // Total += 7 fRunStop.ReadBinary(fin); // Total += 7 } // // calculate size of array, create it and fill it // Int_t nPixel = fNumCrates*fNumPixInCrate; fPixAssignment->Set(nPixel); // ----- Pixel Assignement ----- fin.read((char*)fPixAssignment->GetArray(), nPixel*2); fin.read((char*)&dummy, 16); return FixAssignment(); } // -------------------------------------------------------------------------- // // Return the run type as string ("Data", "Pedestal", ...), for example // to print it as readable text. // const char *MRawRunHeader::GetRunTypeStr() const { switch (fRunType) { case kRTData: return "Data"; case kRTPedestal: return "Pedestal"; case kRTCalibration: return "Calibration"; case kRTPointRun: return "Point-Run"; case kRTMonteCarlo: return "Monte Carlo"; case kRTNone: return ""; default: return ""; } } // -------------------------------------------------------------------------- // // print run header information on *fLog. The option 'header' supresses // the pixel index translation table. // void MRawRunHeader::Print(Option_t *t) const { *fLog << all << endl; *fLog << "MagicNumber: 0x" << hex << fMagicNumber << " - "; switch (fMagicNumber) { case kMagicNumber: *fLog << "OK"; break; case kMagicNumber+1: *fLog << "File not closed!"; break; default: *fLog << "Wrong!"; break; } *fLog << endl; *fLog << "Versions: " << dec << "Format=" << fFormatVersion << " "; *fLog << "Software=" << fSoftVersion << " "; if (fFormatVersion>5) *fLog << "Camera=" << fCameraVersion; *fLog << endl; if (fFormatVersion>5) *fLog << "Telescope: " << fTelescopeNumber << endl; *fLog << "RunNumber: " << fRunNumber << " (Type=" << GetRunTypeStr() << ")" << endl; *fLog << "ProjectName: '" << fProjectName << "'" << endl; if (fFormatVersion>5) *fLog << "Observation: '" << fObservationMode << "'" << endl; *fLog << "Source: '" << fSourceName << "' " << " "; *fLog << fSourceEpochChar << dec << fSourceEpochDate << endl; *fLog << "Run Start: " << fRunStart << endl; *fLog << "Run Stop: " << fRunStop << endl; *fLog << "Crates: " << fNumCrates << " x " << fNumPixInCrate << " Pixel/Crate = " << fNumCrates*fNumPixInCrate << " Pixel/Evt" << endl; *fLog << "Num Pixels: " << GetNumNormalPixels() << " (normal) + " << GetNumSpecialPixels() << " (special) = " << GetNumConnectedPixels() << " (total)" << endl; *fLog << "Samples: " << fNumSamplesHiGain << "/" << fNumSamplesLoGain << " (hi/lo) = " << (fNumSamplesLoGain+fNumSamplesHiGain) * fNumCrates * fNumPixInCrate /1024 << "kiB/Evt" << endl; *fLog << "Evt Counter: " << fNumEvents << endl; if (TString(t).Contains("header", TString::kIgnoreCase)) return; *fLog << inf << "Assignment:" << hex << endl; for (int i=0; iGetSize(); UShort_t rc = 0; for (int i=0; i0) // UShort_t MRawRunHeader::GetNumNormalPixels() const { const Int_t num = fPixAssignment->GetSize(); UShort_t rc = 0; for (int i=0; i0) rc++; } return rc; } // -------------------------------------------------------------------------- // // Return the number of pixel which are markes as connected and so-called // 'special' pixels in the pix assignment (<0) // UShort_t MRawRunHeader::GetNumSpecialPixels() const { const Int_t num = fPixAssignment->GetSize(); UShort_t rc = 0; for (int i=0; iGetSize(); Short_t rc = 0; for (int i=0; iGetSize(); Short_t rc = 0; for (int i=0; iGetSize(); } // -------------------------------------------------------------------------- // // Returns absolute size in bytes of the run header as read from a raw file. // This must be done _after_ the header is read, because the header doesn't // have a fixed size (used in MRawSocketRead) // Int_t MRawRunHeader::GetNumTotalBytes() const { switch (fFormatVersion) { case 1: return 80+fNumCrates*fNumPixInCrate*2+16; case 2: case 3: case 4: case 5: return 84+fNumCrates*fNumPixInCrate*2+16; case 6: return 84+fNumCrates*fNumPixInCrate*2+16 +4+78+58+60+8; } return 0; }