Changeset 19177
- Timestamp:
- 08/18/18 23:06:09 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/zfits.cc
r19025 r19177 18 18 po::options_description control("zfits"); 19 19 control.add_options() 20 ("in", var<string>()->required(), "") 20 ("in", var<string>() 21 #if BOOST_VERSION >= 104200 22 ->required() 23 #endif 24 ) 21 25 ("out", var<string>(), "") 22 26 ("decompress,d", po_switch(), "") … … 64 68 } 65 69 70 struct col_t : fits::Table::Column 71 { 72 string name; 73 void *ptr; 74 }; 75 66 76 int Compress(const string &ifile, const string &ofile) 67 77 { … … 85 95 // columns in the same order as they are in the file 86 96 const fits::Table::Columns &cols= f.GetColumns(); 87 88 struct col_t : fits::Table::Column89 {90 string name;91 void *ptr;92 };93 94 97 95 98 map<size_t, col_t> columns;
Note:
See TracChangeset
for help on using the changeset viewer.