Changeset 7567 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
03/04/06 22:51:56 (19 years ago)
Author:
Daniela Dorner
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7566 r7567  
    1818
    1919                                                 -*-*- END OF LINE -*-*-
     20 2006/03/04 Daniela Dorner
     21
     22   * callisto.cc:
     23     - changed return values to improve the failure handling in the db
     24
     25
     26
    2027 2006/03/03 Thomas Bretz
    2128
  • trunk/MagicSoft/Mars/callisto.cc

    r7560 r7567  
    261261    {
    262262        gLog << err << "Sorry, sequence file '" << kSequence << "' doesn't exist." << endl;
    263         return 2;
     263        return 3;
    264264    }
    265265
     
    267267    {
    268268        gLog << err << "Sorry, config file '" << kConfig << "' doesn't exist." << endl;
    269         return 2;
     269        return 4;
    270270    }
    271271
     
    287287    {
    288288        gLog << err << "Sequence read but not valid!" << endl << endl;
    289         return 2;
     289        return 5;
    290290    }
    291291
     
    371371        {
    372372            gLog << err << "Calculation of pedestal failed." << endl << endl;
    373             return 2;
     373            return 6;
    374374        }
    375375
     
    408408        {
    409409            gLog << err << "Calculation of pedestal resolution failed." << endl << endl;
    410             return 2;
     410            return 7;
    411411        }
    412412
     
    438438        {
    439439            gLog << err << "Calculation of calibration failed." << endl << endl;
    440             return 2;
     440            return 8;
    441441        }
    442442
     
    466466            {
    467467                gLog << err << "Calibration of calibration failed." << endl << endl;
    468                 return 2;
     468                return 9;
    469469            }
    470470
     
    506506        {
    507507            gLog << err << "Calculation of fundamental pedestal failed." << endl << endl;
    508             return 2;
     508            return 10;
    509509        }
    510510
     
    550550
    551551            gLog << err << "Calculation of pedestal from extrtactor (random) failed." << endl << endl;
     552
     553            //error coding for the automatic analysis (to be filled into the database)
     554            switch (rc)
     555            {
     556            case 0:
     557                return 11;
     558            case -1:
     559                return 12;
     560            case -2:
     561                return 13;
     562            case -3:
     563                return 14;
     564            }
    552565            return 2;
    553566        }
     
    586599        {
    587600            gLog << err << "Calculation of pedestal from extractor failed." << endl << endl;
    588             return 2;
     601            return 15;
    589602        }
    590603
     
    613626        // Where to search for calibration files
    614627        if (!job4.Process(job1.GetPedestalCam(), job3.GetPedestalCam(), job2.GetPedestalCam()))
    615             return 2;
     628            return 16;
    616629
    617630        if (kDebugEnv>0)
Note: See TracChangeset for help on using the changeset viewer.