Changeset 16964 for trunk/FACT++/src
- Timestamp:
- 07/19/13 09:07:03 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.