Ignore:
Timestamp:
11/18/05 17:15:30 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

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

    r7389 r7409  
    7474#include "MDataSet.h"
    7575
     76#include <string.h>  // necessary for Fedora core 2 with kernel 2.6.9-1.667 #1 and gcc 3.4.2
     77#include <errno.h>   // necessary for Fedora core 2 with kernel 2.6.9-1.667 #1 and gcc 3.4.2
     78
    7679#include <stdlib.h>
    7780#include <fstream>
     
    222225    fIsWobbleMode = env.GetValue("WobbleMode", kFALSE);
    223226    fComment      = env.GetValue("Comment",    "");
     227
     228    fNameSource = fNameSource.Strip(TString::kBoth);
     229    fCatalog    = fCatalog.Strip(TString::kBoth);
    224230}
    225231
     
    246252    if (!IsValid())
    247253    {
    248         gLog << "Dataset: " << fName << " <invalid>" << endl;
     254        gLog << "Dataset: " << fName << " <invalid - no analysis number available>" << endl;
    249255        return;
    250256    }
Note: See TracChangeset for help on using the changeset viewer.