///////////////////////////////////////////////////////////////////////////// // // // MCT1ReadAscii // // // ///////////////////////////////////////////////////////////////////////////// #include "MCT1ReadAscii.h" #include #include #include "MLog.h" #include "MLogManip.h" #include "MParList.h" #include "MCerPhotEvt.h" #include "MPedestalCam.h" ClassImp(MCT1ReadAscii) MCT1ReadAscii::MCT1ReadAscii(const char *fname, const char *name, const char *title) { *fName = name ? name : "MCT1ReadAscii"; *fTitle = title ? title : "Task to loop over events in CT1 ascii file"; // // remember file name for opening the file in the preprocessor // fFileNames = new TArrayC; if (fname) AddFile(fname); } MCT1ReadAscii::~MCT1ReadAscii() { delete fFileNames; if (fIn) delete fIn; } void MCT1ReadAscii::AddFile(const char *txt) { // // Add this file as the last entry in the chain // const int sz = fFileNames->GetSize(); const int tsz = strlen(txt)+1; fFileNames->Set(sz+tsz); memcpy(fFileNames->GetArray()+sz, txt, tsz); } Bool_t MCT1ReadAscii::OpenNextFile() { // // open the input stream and check if it is really open (file exists?) // if (fIn) delete fIn; fIn = NULL; const int arrsz = fFileNames->GetSize(); if (arrsz<1) return kFALSE; // // open the file which is the first one in the chain // const char *name = fFileNames->GetArray(); fIn = new ifstream(name); if (!(*fIn)) { *fLog << dbginf << "Cannot open file '" << name << "'" << endl; return kFALSE; } // // remove the first entry from the chain // *fLog << "Open file: '" << name << "'" << endl; // // create the new char array containing the filenames to process // const int sz = strlen(name)+1; char *dummy = new char[arrsz-sz]; memcpy(dummy, name+sz, arrsz-sz); // // dummy will be deleted by the destructor of fFileNames // fFileNames->Adopt(arrsz-sz, dummy); return kTRUE; } Bool_t MCT1ReadAscii::PreProcess(MParList *pList) { // // Preprocessing // // // Try to open at least one (the first) file // if (!OpenNextFile()) return kFALSE; // // look for the MCerPhotEvt class in the plist // fNphot = (MCerPhotEvt*)pList->FindCreateObj("MCerPhotEvt"); if (!fNphot) return kFALSE; // // look for the pedestal class in the plist // fPedest = (MPedestalCam*)pList->FindCreateObj("MPedestalCam"); if (!fPedest) return kFALSE; fPedest->InitSize(127); return kTRUE; } void MCT1ReadAscii::ReadPedestals() { *fLog << "MCT1Pedestals::AsciiRead: Reading Pedestals..." << endl; // // skip the next 4 values // Float_t val; *fIn >> val; *fIn >> val; *fIn >> val; *fIn >> val; // // read in the next 127 numbers as the pedestals // for (Int_t i = 0; i<127; i++) { *fIn >> val; if (val > 0.0) (*fPedest)[i].SetMeanRms(val); } } void MCT1ReadAscii::ReadData() { // // clear the list of cerphot-events // fNphot->Clear(); // // five unsused numbers // Int_t val; *fIn >> val; // ener *fIn >> val; // zenang *fIn >> val; // sec1 *fIn >> val; // sec2 // // read in the number of cerenkov photons and add the 'new' pixel // too the list with it's id, number of photons and error // for (Int_t i = 0; i<127; i++ ) { Float_t nphot; *fIn >> nphot; if (nphot > 0.0) fNphot->AddPixel(i, nphot, (*fPedest)[i].GetMeanRms()); } } Bool_t MCT1ReadAscii::Process() { // // FIXME. This function should switch between reading pedestals and // reading event data by the 'switch entry'. // After reading it should set the InputStreamID correctly. // ( should use MPedestalCam ) // // // read in the event nr // Int_t evtnr; *fIn >> evtnr; // // check if we are done. Try to open the next file in chain. // If it was possible start reading. If not break the event loop // if (fIn->eof()) return OpenNextFile() ? kCONTINUE : kFALSE; // // if the first number is negativ this is a pedestal line: // read in pedestals // // FIXME! Set InputStreamID if (evtnr < 0) { ReadPedestals(); return kCONTINUE; } ReadData(); return kTRUE; }