Ignore:
Timestamp:
01/24/05 11:08:09 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mjobs
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mjobs/MJCalibrateSignal.cc

    r5872 r5957  
    113113
    114114    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    }
    115120
    116121    *fLog << inf << " - MStatusDisplay..." << flush;
  • trunk/MagicSoft/Mars/mjobs/MJCalibration.cc

    r5940 r5957  
    15631563    // Input containers
    15641564    //
    1565     pedcam.SetName("MPedestalCam");
     1565    pedcam.SetName("MPedestalCam"); // MPedestalFundamental
    15661566    plist.AddToList(&pedcam);
    15671567    plist.AddToList(&fBadPixels);
     
    19621962{
    19631963    if (fPathOut.IsNull())
     1964    {
     1965        *fLog << inf << "No output path specified via SetPathOut - no output written." << endl;
    19641966        return kTRUE;
     1967    }
    19651968
    19661969    const TString oname(GetOutputFile());
  • trunk/MagicSoft/Mars/mjobs/MJPedestal.cc

    r5902 r5957  
    752752
    753753    if (fPathOut.IsNull())
     754    {
     755        *fLog << inf << "No output path specified via SetPathOut - no output written." << endl;
    754756        return kTRUE;
     757    }
    755758
    756759    const TString oname(GetOutputFile());
  • trunk/MagicSoft/Mars/mjobs/MJob.h

    r5557 r5957  
    4949    ~MJob();
    5050
     51    // Setter
    5152    void   SetPathOut(const char *path=".");
    5253    void   SetPathIn(const char *path=".");
     
    6061    void   SetSequence(const MSequence &seq) { fSequence = seq; }
    6162
     63    // Getter
     64    TString GetPathOut() const  { return fPathOut; }
     65    TString GetPathIn() const   { return fPathIn; }
     66    TString GetPathData() const { return fPathData; }
     67
     68    // Others
    6269    MStatusDisplay *GetDisplay() { return fDisplay; }
    6370
Note: See TracChangeset for help on using the changeset viewer.