Changeset 18123 for trunk/Mars/mdrs
- Timestamp:
- 02/12/15 16:26:40 (10 years ago)
- Location:
- trunk/Mars/mdrs
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Mars/mdrs/MDrsCalibrationTime.cc
r14922 r18123 16 16 ! 17 17 ! 18 ! Author(s): Thomas Bretz 2013 <mailto:t homas.bretz@epfl.ch>18 ! Author(s): Thomas Bretz 2013 <mailto:tbretz@physik.rwth-aachen.de> 19 19 ! 20 ! Copyright: MAGIC Software Development, 2000-201 320 ! Copyright: MAGIC Software Development, 2000-2015 21 21 ! 22 22 ! … … 48 48 return true; 49 49 } 50 51 bool MDrsCalibrationTime::ReadFits(const string &fname) 52 { 53 const std::string msg = DrsCalibrateTime::ReadFitsImp(fname); 54 if (msg.empty()) 55 { 56 *fLog << inf << "Wrote DRS calibration file " << fname << endl; 57 return kTRUE; 58 } 59 60 *fLog << err << "Error writing to " << fname << ": " << msg << endl; 61 return kFALSE; 62 } 63 64 bool MDrsCalibrationTime::WriteFits(const string &fname) const 65 { 66 const Bool_t exists = !gSystem->AccessPathName(fname.c_str(), kFileExists); 67 if (exists) 68 { 69 *fLog << err << "File '" << fname << "' already exists." << endl; 70 return kFALSE; 71 } 72 73 const std::string msg = DrsCalibrateTime::WriteFitsImp(fname); 74 if (msg.empty()) 75 { 76 *fLog << inf << "Wrote DRS calibration file " << fname << endl; 77 return kTRUE; 78 } 79 80 *fLog << err << "Error writing to " << fname << ": " << msg << endl; 81 return kFALSE; 82 } -
trunk/Mars/mdrs/MDrsCalibrationTime.h
r17697 r18123 47 47 } 48 48 49 bool ReadFits(const std::string &fname); 50 bool WriteFits(const std::string &fname) const; 51 49 52 ClassDef(MDrsCalibrationTime, 2) // A list of histograms storing the Fadc spektrum of one pixel 50 53 };
Note:
See TracChangeset
for help on using the changeset viewer.