Changeset 17248 for trunk/Mars/mcore/DrsCalib.h
- Timestamp:
- 10/18/13 13:26:43 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mcore/DrsCalib.h
r17241 r17248 1377 1377 } 1378 1378 1379 std::string WriteFitsImp(const std::string &filename, uint32_t night, const std::vector<float> &vec) const1379 std::string WriteFitsImp(const std::string &filename, const std::vector<float> &vec, uint32_t night=0) const 1380 1380 { 1381 1381 const size_t n = 1440*1024*4 + 1440*fRoi*2 + fNumTm*fRoi*2 + 3; … … 1407 1407 1408 1408 file.SetDefaultKeys(); 1409 file.SetInt("NIGHT", night, "Night as int"); 1409 if (night>0) 1410 file.SetInt("NIGHT", night, "Night as int"); 1410 1411 1411 1412 file.SetStr("DATE-OBS", fDateObs, "First event of whole DRS calibration");
Note:
See TracChangeset
for help on using the changeset viewer.