Changeset 17683 for fact/tools/pyscripts/pyfact
- Timestamp:
- 04/23/14 16:50:50 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
fact/tools/pyscripts/pyfact/pyfact.py
r14469 r17683 14 14 # make sure the location of factfits_h.so is in LD_LIBRARY_PATH. 15 15 # having it in PYTHONPATH is *not* sufficient 16 gSystem.Load('factfits_h.so') 16 gSystem.Load('fits_h.so') 17 gSystem.Load('extern_Mars_mcore/izstream_h.so') 18 gSystem.Load('extern_Mars_mcore/zfits_h.so') 19 gSystem.Load('extern_Mars_mcore/factfits_h.so') 17 20 gSystem.Load('calfactfits_h.so') 18 21 from ROOT import * … … 199 202 else: 200 203 try: 201 data_file = FactFits(self.data_file_name)204 data_file = factfits(self.data_file_name) 202 205 except IOError: 203 206 print 'problem accessing data file: ', data_file_name … … 229 232 # open the calibration file 230 233 try: 231 calib_file = FactFits(self.calib_file_name)234 calib_file = factfits(self.calib_file_name) 232 235 except IOError: 233 236 print 'problem accessing calibration file: ', calib_file_name … … 494 497 self.__module__ = 'pyfact' 495 498 try: 496 self.f = FactFits(path)499 self.f = factfits(path) 497 500 except IOError: 498 501 print 'problem accessing data file: ', data_file_name
Note:
See TracChangeset
for help on using the changeset viewer.