/* ======================================================================== *\ ! ! * ! * This file is part of CheObs, the Modular 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 appears 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, 1/2009 ! ! Copyright: CheObs Software Development, 2000-2009 ! ! \* ======================================================================== */ ////////////////////////////////////////////////////////////////////////////// // // MLut // // This is a simple and easy-to-use implementation of a look-up table with // rows of different lengths. // ////////////////////////////////////////////////////////////////////////////// #include "MLut.h" #include #include #include // atoi (Ubuntu 8.10) #include "MLog.h" #include "MLogManip.h" #include "MArrayI.h" ClassImp(MLut); using namespace std; // -------------------------------------------------------------------------- // // Get the i-th entry in the routing table. Note, that i is not // range checked, but for any valid i a valid MArrayI is returned. // const MArrayI &MLut::GetRow(UInt_t i) const { return *static_cast(UncheckedAt(i)); } void MLut::Delete(Option_t *option) { TObjArray::Delete(option); fMaxEntries = 0; fMinEntries = 0; fMaxIndex = -1; } // -------------------------------------------------------------------------- // // Check if it is a default lut which would just map every entry to itself // An empty Lut is a default lut // Bool_t MLut::IsDefault() const { if (IsEmpty()) return kTRUE; if (!HasConstantLength() || fMaxEntries!=1) return kFALSE; // Loop over all rows for (Int_t y=0; ySetInverse(*this, uniq); return lut; } // -------------------------------------------------------------------------- // // Set this to the inverse lut of the given argument. // // For an example see Inverse() // void MLut::SetInverse(const MLut &lut, Bool_t uniq) { if (&lut==this) { Invert(uniq); return; } // Delete the current lut Delete(); // Add as many MArrayI as needed for (Int_t i=0; i<=lut.fMaxIndex; i++) Add(new MArrayI); // Get the number of rows in the given lut const UInt_t num = lut.GetEntriesFast(); // Loop over all rows for (UInt_t y=0; y(UncheckedAt(arr[x])); if (uniq) row.AddUniq(y); else row.Add(y); } } // Reset the statistics fMaxEntries = 0; fMinEntries = 0; // Loop over all new MArrayI for (Int_t i=0; i<=lut.fMaxIndex; i++) { // Get i-th row MArrayI &row = *static_cast(UncheckedAt(i)); // Sort the i-th row ascending row.ReSort(); // Get the number of entries in the row UInt_t n = row.GetSize(); // For convinience (to avoid empty lines in a file) // add -1 to empty rows if (n==0) { row.Add(-1); n=1; } // Get the new min and max if (nfMaxEntries) fMaxEntries = n; } // set the new highest index in the table fMaxIndex = num-1; } // -------------------------------------------------------------------------- // // Inverts the current lut, for example // // 0: -- // 0: 1 2 ---\ 1: 0 // 1: 2 3 ---/ 2: 0 1 // 3: 1 // void MLut::Invert(Bool_t uniq) { MLut *lut = GetInverse(uniq); // Keep fMaxIndex TObjArray::Delete(); for (Int_t i=0; i<=fMaxIndex; i++) Add(lut->Remove(lut->UncheckedAt(i))); fMaxEntries = lut->fMaxEntries; fMinEntries = lut->fMinEntries; fMaxIndex = lut->fMaxIndex; delete lut; } // -------------------------------------------------------------------------- // // Read a lut from a stream. // // The row in the lut is just identical to the line in the stream. // The entries in one line must be seperated by a whitespace. // The lines can have a different number of entries. // Int_t MLut::ReadStream(istream &fin) { Delete(); while (1) { TString line; line.ReadLine(fin); if (!fin) break; // Split line by whitespaces TObjArray *tokens = line.Tokenize(' '); // Get number of entries in this row const UInt_t n = tokens->GetEntries(); // Calculate minimum and maximum numbers of entries per row if (nfMaxEntries) fMaxEntries = n; // create new entry for this row and add it to the array MArrayI &idx = *new MArrayI(n); Add(&idx); // loop over all entries in this row for (UInt_t i=0; iGetName()); // Calculate maximum existing index if (idx[i]>fMaxIndex) fMaxIndex = idx[i]; } // delete allocated TObjArray delete tokens; } return GetEntries(); } // -------------------------------------------------------------------------- // // Write a lut to a stream. // Int_t MLut::WriteStream(ostream &out) { const Int_t n = GetEntriesFast(); for (int y=0; yExpandPathName(expname); ifstream fin(expname); if (!fin) { gLog << err << "Cannot open file " << expname << ": "; gLog << (errno!=0?strerror(errno):"Insufficient memory for decompression") << endl; return -1; } return ReadStream(fin); } // -------------------------------------------------------------------------- // // Write a lut to a file // Int_t MLut::WriteFile(const char *fname) { TString expname(fname); gSystem->ExpandPathName(expname); ofstream fout(expname); if (!fout) { gLog << err << "Cannot open file " << expname << ": "; gLog << (errno!=0?strerror(errno):"Insufficient memory for decompression") << endl; return -1; } return WriteStream(fout); }