Changeset 5957 for trunk/MagicSoft/Mars/mjobs
- Timestamp:
- 01/24/05 11:08:09 (20 years ago)
- Location:
- trunk/MagicSoft/Mars/mjobs
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc
r5872 r5957 113 113 114 114 TFile file(oname, "RECREATE"); 115 if (!file.IsOpen()) 116 { 117 *fLog << err << "ERROR - Couldn't open file " << oname << " for writing..." << endl; 118 return kFALSE; 119 } 115 120 116 121 *fLog << inf << " - MStatusDisplay..." << flush; -
trunk/MagicSoft/Mars/mjobs/MJCalibration.cc
r5940 r5957 1563 1563 // Input containers 1564 1564 // 1565 pedcam.SetName("MPedestalCam"); 1565 pedcam.SetName("MPedestalCam"); // MPedestalFundamental 1566 1566 plist.AddToList(&pedcam); 1567 1567 plist.AddToList(&fBadPixels); … … 1962 1962 { 1963 1963 if (fPathOut.IsNull()) 1964 { 1965 *fLog << inf << "No output path specified via SetPathOut - no output written." << endl; 1964 1966 return kTRUE; 1967 } 1965 1968 1966 1969 const TString oname(GetOutputFile()); -
trunk/MagicSoft/Mars/mjobs/MJPedestal.cc
r5902 r5957 752 752 753 753 if (fPathOut.IsNull()) 754 { 755 *fLog << inf << "No output path specified via SetPathOut - no output written." << endl; 754 756 return kTRUE; 757 } 755 758 756 759 const TString oname(GetOutputFile()); -
trunk/MagicSoft/Mars/mjobs/MJob.h
r5557 r5957 49 49 ~MJob(); 50 50 51 // Setter 51 52 void SetPathOut(const char *path="."); 52 53 void SetPathIn(const char *path="."); … … 60 61 void SetSequence(const MSequence &seq) { fSequence = seq; } 61 62 63 // Getter 64 TString GetPathOut() const { return fPathOut; } 65 TString GetPathIn() const { return fPathIn; } 66 TString GetPathData() const { return fPathData; } 67 68 // Others 62 69 MStatusDisplay *GetDisplay() { return fDisplay; } 63 70
Note:
See TracChangeset
for help on using the changeset viewer.