// $Header: GetTrackLookUps.h $
// one dimensional lookup table
// Version 1.0 7-Jan-1999 Richard creation

#ifndef GETTRACKLOOKUPS_H
#define GETTRACKLOOKUPS_H


#include "LookUp2d.h"
#include "TMap.h"
#include "TObjArray.h"

class GetTrackLookups : public TObject {

public:
  GetTrackLookups(FILE* ifile);  // constructor
  ~GetTrackLookups();  // destructor


  LookUp2d* getParamLookup(char* name); // get lookup table by name
  LookUp2d* getParamLookup(int 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(GetTrackLookups,0)    // for Cint dictionary
};
#endif
