Ignore:
Timestamp:
01/16/07 13:54:19 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfileio/MReadMarsFile.cc

    r8226 r8253  
    257257    // Check if really one file conatains one RunHeader
    258258    // (FIXME: Do the check more properly)
    259     if (fRun->GetEntries() < fRun->GetNumFiles())
     259    if ((Int_t)fRun->GetEntries() < fRun->GetNumFiles())
    260260    {
    261261        *fLog << err << "Error - Number of files exceeds number of RunHeaders... aborting." << endl;
     
    263263    }
    264264
    265     if (fRun->GetEntries() > fRun->GetNumFiles())
     265    if ((Int_t)fRun->GetEntries() > fRun->GetNumFiles())
    266266    {
    267267        *fLog << err << "Error - Number of RunHeaders exceeds number of files... aborting." << endl;
Note: See TracChangeset for help on using the changeset viewer.