Changeset 17266 for trunk/FACT++/src
- Timestamp:
- 10/18/13 17:53:27 (11 years ago)
- Location:
- trunk/FACT++/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/src/DataWriteFits2.cc
r17231 r17266 14 14 : DataProcessorImp(path, night, runid, imp) 15 15 { 16 fFile = std::make_shared< std::ofits>();16 fFile = std::make_shared<ofits>(); 17 17 } 18 18 … … 22 22 factofits *file = new factofits; 23 23 file->SetDrsCalibration(cal); 24 fFile = std::shared_ptr< std::ofits>(file);24 fFile = std::shared_ptr<ofits>(file); 25 25 } 26 26 … … 42 42 processing[1] = FITS::kFactHuffman16; 43 43 44 const Compression comp(processing, FITS::kOrderByRow);44 const FITS::Compression comp(processing, FITS::kOrderByRow); 45 45 46 46 fFile->AddColumnShort(comp, h.NPix*h.Nroi, "Data", "int16", "Digitized data"); -
trunk/FACT++/src/DataWriteFits2.h
r17231 r17266 6 6 #include <array> 7 7 8 namespace std 9 { 10 class ofits; 11 } 8 class ofits; 12 9 13 10 class DrsCalibration; … … 15 12 class DataWriteFits2 : public DataProcessorImp 16 13 { 17 std::shared_ptr< std::ofits> fFile;14 std::shared_ptr<ofits> fFile; 18 15 19 16 std::array<uint32_t, 8> fTriggerCounter;
Note:
See TracChangeset
for help on using the changeset viewer.