Changeset 18602 for trunk/FACT++


Ignore:
Timestamp:
09/17/16 16:33:55 (8 years ago)
Author:
tbretz
Message:
The latest change broke the compiling with root.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/fitsdump.cc

    r18585 r18602  
    408408//! Perform the actual dump, based on the current parameters
    409409//
    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
     411void 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
     413void 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
    411415{
    412416    const fits::Table::Keys &fKeyMap = GetKeys();
     
    632636}
    633637
    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
     639void FitsDumper::DumpRoot(ostream &fout, const vector<string> &cols, const string &filter, size_t first, size_t limit, const string &filename)
     640#else
     641void FitsDumper::DumpRoot(ostream &, const vector<string> &, const string &, size_t, size_t, const string &)
     642#endif
    635643{
    636644#ifdef HAVE_ROOT
     
    836844}
    837845
    838 void FitsDumper::DumpStats(ostream &fout, const vector<MyColumn> &cols, const string &/*filter*/, size_t first, size_t limit)
     846#ifdef HAVE_ROOT
     847void FitsDumper::DumpStats(ostream &fout, const vector<MyColumn> &cols, const string &filter, size_t first, size_t limit)
     848#else
     849void FitsDumper::DumpStats(ostream &fout, const vector<MyColumn> &cols, const string &, size_t first, size_t limit)
     850#endif
    839851{
    840852#ifdef HAVE_ROOT
Note: See TracChangeset for help on using the changeset viewer.