Changeset 16964 for trunk/FACT++/src


Ignore:
Timestamp:
07/19/13 09:07:03 (11 years ago)
Author:
lyard
Message:
replaced fits with fact fits to be able to read compressed files
File:
1 edited

Legend:

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

    r16423 r16964  
    1616
    1717#include "Time.h"
    18 #include "externals/zfits.h"
     18#include "externals/factfits.h"
    1919
    2020#ifdef HAVE_ROOT
     
    6161
    6262
    63 class FitsDumper : public zfits
     63class FitsDumper : public factfits
    6464{
    6565private:
     
    9898//!        the ostream where to redirect the outputs
    9999//
    100 FitsDumper::FitsDumper(const string &fname) : zfits(fname), fFilename(fname)
     100FitsDumper::FitsDumper(const string &fname) : factfits(fname, "Events"), fFilename(fname)
    101101{
    102102}
     
    818818    const size_t limit  = conf.Get<size_t>("limit");
    819819
     820#ifdef HAVE_ROOT
    820821    if (conf.Get<bool>("root"))
    821822    {
     
    823824        return 0;
    824825    }
     826#endif
    825827
    826828    const vector<MyColumn> cols = InitColumns(conf.Vec<string>("col"));
Note: See TracChangeset for help on using the changeset viewer.