Changeset 16964
- Timestamp:
- 07/19/13 09:07:03 (11 years ago)
- Location:
- trunk/FACT++
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/gui/RawEventsViewer/RawEventsViewer.cc
r15278 r16964 23 23 24 24 #include "src/Configuration.h" 25 #include "externals/f its.h"25 #include "externals/factfits.h" 26 26 27 27 … … 547 547 } 548 548 try { 549 inputFile = new f its(file);549 inputFile = new factfits(file, "Events"); 550 550 } 551 551 catch (std::runtime_error e) … … 2220 2220 "The FACT++ raw data viewer.\n" 2221 2221 "\n" 2222 "Usage: viewer [OPTIONS] [datafile.fits[.gz ] [calibration.drs.fits[.gz]]]\n"2222 "Usage: viewer [OPTIONS] [datafile.fits[.gz|.fz] [calibration.drs.fits[.gz]]]\n" 2223 2223 " or: viewer [OPTIONS]\n"; 2224 2224 cout << endl; -
trunk/FACT++/src/fitsdump.cc
r16423 r16964 16 16 17 17 #include "Time.h" 18 #include "externals/ zfits.h"18 #include "externals/factfits.h" 19 19 20 20 #ifdef HAVE_ROOT … … 61 61 62 62 63 class FitsDumper : public zfits63 class FitsDumper : public factfits 64 64 { 65 65 private: … … 98 98 //! the ostream where to redirect the outputs 99 99 // 100 FitsDumper::FitsDumper(const string &fname) : zfits(fname), fFilename(fname)100 FitsDumper::FitsDumper(const string &fname) : factfits(fname, "Events"), fFilename(fname) 101 101 { 102 102 } … … 818 818 const size_t limit = conf.Get<size_t>("limit"); 819 819 820 #ifdef HAVE_ROOT 820 821 if (conf.Get<bool>("root")) 821 822 { … … 823 824 return 0; 824 825 } 826 #endif 825 827 826 828 const vector<MyColumn> cols = InitColumns(conf.Vec<string>("col"));
Note:
See TracChangeset
for help on using the changeset viewer.