Changeset 18602 for trunk/FACT++/src
- Timestamp:
- 09/17/16 16:33:55 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/fitsdump.cc
r18585 r18602 408 408 //! Perform the actual dump, based on the current parameters 409 409 // 410 void FitsDumper::Dump(ostream &fout, const vector<string> &format, const vector<MyColumn> &cols, const string &/*filter*/, size_t first, size_t limit, const string &filename) 410 #ifdef HAVE_ROOT 411 void FitsDumper::Dump(ostream &fout, const vector<string> &format, const vector<MyColumn> &cols, const string &filter, size_t first, size_t limit, const string &filename) 412 #else 413 void FitsDumper::Dump(ostream &fout, const vector<string> &format, const vector<MyColumn> &cols, const string &, size_t first, size_t limit, const string &filename) 414 #endif 411 415 { 412 416 const fits::Table::Keys &fKeyMap = GetKeys(); … … 632 636 } 633 637 634 void FitsDumper::DumpRoot(ostream &/*fout*/, const vector<string> &/*cols*/, const string &/*filter*/, size_t /*first*/, size_t /*limit*/, const string &/*filename*/) 638 #ifdef HAVE_ROOT 639 void FitsDumper::DumpRoot(ostream &fout, const vector<string> &cols, const string &filter, size_t first, size_t limit, const string &filename) 640 #else 641 void FitsDumper::DumpRoot(ostream &, const vector<string> &, const string &, size_t, size_t, const string &) 642 #endif 635 643 { 636 644 #ifdef HAVE_ROOT … … 836 844 } 837 845 838 void FitsDumper::DumpStats(ostream &fout, const vector<MyColumn> &cols, const string &/*filter*/, size_t first, size_t limit) 846 #ifdef HAVE_ROOT 847 void FitsDumper::DumpStats(ostream &fout, const vector<MyColumn> &cols, const string &filter, size_t first, size_t limit) 848 #else 849 void FitsDumper::DumpStats(ostream &fout, const vector<MyColumn> &cols, const string &, size_t first, size_t limit) 850 #endif 839 851 { 840 852 #ifdef HAVE_ROOT
Note:
See TracChangeset
for help on using the changeset viewer.