/* ======================================================================== *\ ! ! * ! * 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 10/2003 ! ! Copyright: MAGIC Software Development, 2000-2004 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MRawRead // // This tasks reads the raw binary file like specified in the TDAS??? // and writes the data in the corresponding containers which are // either retrieved from the parameter list or created and added. // // Input Containers: // -/- // // Output Containers: // MRawRunHeader // MRawEvtHeader // MRawEvtData // MRawCrateArray // MRawEvtTime // ////////////////////////////////////////////////////////////////////////////// #include "MRawRead.h" #include #include "MLog.h" #include "MLogManip.h" #include "MTime.h" #include "MParList.h" #include "MRawRunHeader.h" #include "MRawEvtHeader.h" #include "MRawEvtData.h" #include "MRawCrateData.h" #include "MRawCrateArray.h" ClassImp(MRawRead); using namespace std; // -------------------------------------------------------------------------- // // Default constructor. It tries to open the given file. // MRawRead::MRawRead(const char *name, const char *title) { fName = name ? name : "MRawRead"; fTitle = title ? title : "Bas class for reading DAQ files"; } // -------------------------------------------------------------------------- // // The PreProcess of this task checks for the following containers in the // list: // MRawRunHeader if not found it is created // MRawEvtHeader if not found it is created // MRawEvtData if not found it is created // MRawCrateArray if not found it is created // MRawEvtTime if not found it is created (MTime) // // If all containers are found or created the run header is read from the // binary file and printed. If the Magic-Number (file identification) // doesn't match we stop the eventloop. // // Now the EvtHeader and EvtData containers are initialized. // Int_t MRawRead::PreProcess(MParList *pList) { if (!OpenStream()) return kFALSE; // // check if all necessary containers exist in the Parameter list. // if not create one and add them to the list // fRawRunHeader = (MRawRunHeader*)pList->FindCreateObj("MRawRunHeader"); if (!fRawRunHeader) return kFALSE; fRawEvtHeader = (MRawEvtHeader*)pList->FindCreateObj("MRawEvtHeader"); if (!fRawEvtHeader) return kFALSE; fRawEvtData = (MRawEvtData*)pList->FindCreateObj("MRawEvtData"); if (!fRawEvtData) return kFALSE; fRawCrateArray = (MRawCrateArray*)pList->FindCreateObj("MRawCrateArray"); if (!fRawCrateArray) return kFALSE; fRawEvtTime = (MTime*)pList->FindCreateObj("MTime"); if (!fRawEvtTime) return kFALSE; return kTRUE; } // -------------------------------------------------------------------------- // // This is a workaround for the oldest runs (file version<3) // for which no time stamp was available. // For this runs a fake time stamp is created // // Be carefull: This is NOT thread safe! // void MRawRead::CreateFakeTime() const { static Double_t tm = 0; // Range of roughly 8min const UInt_t ct = (*fRawCrateArray)[0]->GetFADCClockTick(); tm = ctGetRunNumber()*10; m %= 360; // 6h fRawEvtTime->UpdMagicTime(m/60, m%60, s, ns); } // -------------------------------------------------------------------------- // // Read a single event from the stream // Bool_t MRawRead::ReadEvent(istream &fin) { // // Get file format version // const UShort_t ver = fRawRunHeader->GetFormatVersion(); // // Read in the next EVENT HEADER (see specification), // if there is no next event anymore stop eventloop // if (!fRawEvtHeader->ReadEvt(fin, ver)) return kFALSE; // // Get number of crates from the run header // const UShort_t nc = fRawRunHeader->GetNumCrates(); // // Delete arrays which stores the pixel information (time slices) // fRawEvtData->ResetPixels(); // // clear the TClonesArray which stores the Crate Information // and create a new array of the correct size // fRawCrateArray->SetSize(nc); // // read the CRATE DATA (see specification) from file // for (int i=0; iGetEntry(i)->ReadEvt(fin, ver); if (!fin) return kFALSE; fRawEvtData->ReadEvt(fin); if (!fin) return kFALSE; } // This is a workaround for the oldest runs (version<3) // for which no time stamp was available. // For this runs a fake time stamp is created if (ver<3) CreateFakeTime(); // FIXME: For all other runs we should enhance the precision // of the time-stamp by using the FADCClockTick return kTRUE; }