// ---------------------------------------------------------------------------- // $Id: LCDGetTrackLookups.h,v 1.2 2001/06/19 16:56:46 toshi Exp $ // ---------------------------------------------------------------------------- // // $Log: LCDGetTrackLookups.h,v $ // Revision 1.2 2001/06/19 16:56:46 toshi // Just add $ID: $ in the top of this file. // // // one dimensional lookup table // 7-Jan-1999 Richard creation #ifndef LCDGETTRACKLOOKUPS_H #define LCDGETTRACKLOOKUPS_H #include "LCDLookUp2d.h" #include "TObjArray.h" class LCDGetTrackLookups : public TObject { public: LCDGetTrackLookups(FILE* ifile); // constructor ~LCDGetTrackLookups(); // destructor LCDLookUp2d* GetParamLookup(char* name); // Get lookup table by name LCDLookUp2d* GetParamLookup(Int_t number); // Get lookup table by number TObjArray* GetLookupsArray() {return &m_lookupsArray;} // Get array of lookup tables private: TObjArray m_lookupsArray; // array of lookup tables public: ClassDef(LCDGetTrackLookups,1)// Extract lookup tables for track parameter smear }; #endif