00001 00002 // 00003 // Author: Costas Andreopoulos 00004 // Last revision: March 8, 2001 00005 // 00006 // (c) 2001 University of Athens 00008 00009 //#include <fstream> 00010 #include "TObjArray.h" 00011 00012 #include "BField/BFLLookupTable.h" 00013 00014 ClassImp(BFLLookupTable) 00015 00016 //_____________________________________________________________________ 00017 BFLLookupTable::BFLLookupTable() 00018 :fGrid(BfldGrid::kUndefined),fTable(0) 00019 { 00020 00021 } 00022 //_____________________________________________________________________ 00023 BFLLookupTable::BFLLookupTable(BfldGrid::Grid_t grid) 00024 :fGrid(grid),fTable(0) 00025 { 00026 00027 } 00028 //_____________________________________________________________________ 00029 BFLLookupTable::~BFLLookupTable() 00030 { 00031 fGrid = BfldGrid::kUndefined; 00032 if(fTable) fTable->Delete(); 00033 delete fTable; 00034 } 00035 //_____________________________________________________________________ 00036
1.3.9.1