Changeset 6888 for trunk/MagicSoft


Ignore:
Timestamp:
03/24/05 11:22:20 (20 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
16 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6887 r6888  
    2121
    2222                                                 -*-*- END OF LINE -*-*-
     23
     24 2005/03/24 Thomas Bretz
     25
     26   * callisto.cc, ganymed.cc, mars.cc, merpp.cc, readdaq.cc,
     27     readraw.cc, showlog.cc, showplot.cc, sinope.cc, star.cc:
     28     - replaced all returns of -1 by return 2
     29
     30   * manalysis/AnalysisLinkDef.h, manalysis/Makefile:
     31     - added MEnergyEst (container)
     32
     33   * mhflux/MAlphaFitter.[h,cc]:
     34     - implemented new fit result options
     35
     36
    2337
    2438 2005/03/23 Markus Gaug
  • trunk/MagicSoft/Mars/NEWS

    r6884 r6888  
    22 *** Version <cvs>
    33
     4
     5   - Fix bug on the arrival time reconstruction when using Digital
     6     Filter
     7
     8   - all executables now return 2 where in previous versions -1 has
     9     been returned (gave problems with shell-scripts)
    410
    511
  • trunk/MagicSoft/Mars/callisto.cc

    r6845 r6888  
    155155    {
    156156        Usage();
    157         return -1;
     157        return 2;
    158158    }
    159159
     
    201201        gLog << err << "Neither calibration (-c) nor signal extraction (-y) or test-mode (--use-test) specified!" << endl;
    202202        Usage();
    203         return 0;
     203        return 2;
    204204    }
    205205
     
    233233        arg.Print("options");
    234234        gLog << endl;
    235         return -1;
     235        return 2;
    236236    }
    237237
     
    242242    {
    243243        Usage();
    244         return -1;
     244        return 2;
    245245    }
    246246
     
    253253    {
    254254        gLog << err << "Sorry, sequence file '" << kSequence << "' doesn't exist." << endl;
    255         return -1;
     255        return 2;
    256256    }
    257257
     
    259259    {
    260260        gLog << err << "Sorry, config file '" << kConfig << "' doesn't exist." << endl;
    261         return -1;
     261        return 2;
    262262    }
    263263
     
    279279    {
    280280        gLog << err << "Sequence read but not valid!" << endl << endl;
    281         return -1;
     281        return 2;
    282282    }
    283283
     
    310310        gLog << (kInpathD.IsNull() ? "<defaultpath>" : kInpathD.Data()) << endl;
    311311        if (!kForceExec)
    312             return -1;
     312            return 2;
    313313    }
    314314
     
    363363        {
    364364            gLog << err << "Calculation of pedestal failed." << endl << endl;
    365             return -1;
     365            return 2;
    366366        }
    367367
     
    397397        {
    398398            gLog << err << "Calculation of pedestal resolution failed." << endl << endl;
    399             return -1;
     399            return 2;
    400400        }
    401401
     
    427427        {
    428428            gLog << err << "Calculation of calibration failed." << endl << endl;
    429             return -1;
     429            return 2;
    430430        }
    431431
     
    455455            {
    456456                gLog << err << "Calibration of calibration failed." << endl << endl;
    457                 return -1;
     457                return 2;
    458458            }
    459459
     
    495495        {
    496496            gLog << err << "Calculation of fundamental pedestal failed." << endl << endl;
    497             return -1;
     497            return 2;
    498498        }
    499499
     
    531531        {
    532532            gLog << err << "Calculation of pedestal from extrtactor (random) failed." << endl << endl;
    533             return -1;
     533            return 2;
    534534        }
    535535
     
    567567        {
    568568            gLog << err << "Calculation of pedestal from extractor failed." << endl << endl;
    569             return -1;
     569            return 2;
    570570        }
    571571
     
    594594        // Where to search for calibration files
    595595        if (!job4.ProcessFile(job1.GetPedestalCam(), job2.GetPedestalCam(), job3.GetPedestalCam()))
    596             return -1;
     596            return 2;
    597597
    598598        if (kDebugEnv>0)
  • trunk/MagicSoft/Mars/ganymed.cc

    r6874 r6888  
    9898    {
    9999        Usage();
    100         return -1;
     100        return 2;
    101101    }
    102102
     
    140140    {
    141141        Usage();
    142         return -1;
     142        return 2;
    143143    }
    144144
     
    151151    {
    152152        gLog << err << "Sorry, sequences file '" << kSequences << "' doesn't exist." << endl;
    153         return -1;
     153        return 2;
    154154    }
    155155
     
    157157    {
    158158        gLog << err << "Sorry, config file '" << kConfig << "' doesn't exist." << endl;
    159         return -1;
     159        return 2;
    160160    }
    161161
     
    179179    {
    180180        gLog << err << "Sequences read but not valid!" << endl << endl;
    181         return -1;
     181        return 2;
    182182    }
    183183
     
    228228    {
    229229        gLog << err << "Calculation of cuts failed." << endl << endl;
    230         return -1;
     230        return 2;
    231231    }
    232232    if (kDebugEnv>0)
  • trunk/MagicSoft/Mars/manalysis/AnalysisLinkDef.h

    r6877 r6888  
    1414#pragma link C++ class MMultiDimDistCalc+;
    1515
     16#pragma link C++ class MEnergyEst+;
    1617#pragma link C++ class MEnergyEstimate+;
    1718
  • trunk/MagicSoft/Mars/manalysis/Makefile

    r6878 r6888  
    2828SRCFILES = MGeomApply.cc \
    2929           MCameraData.cc \
     30           MEnergyEst.cc \
    3031           MEnergyEstimate.cc \
    3132           MHadronness.cc \
  • trunk/MagicSoft/Mars/mars.cc

    r6855 r6888  
    8686    {
    8787        Usage();
    88         return -1;
     88        return 2;
    8989    }
    9090
  • trunk/MagicSoft/Mars/merpp.cc

    r6253 r6888  
    158158    {
    159159        Usage();
    160         return -1;
     160        return 2;
    161161    }
    162162
     
    197197    {
    198198        Usage();
    199         return -1;
     199        return 2;
    200200    }
    201201
     
    233233    {
    234234        gLog << err << "Sorry, the input file '" << kNamein << "' doesn't exist." << endl;
    235         return -1;
     235        return 2;
    236236    }
    237237
     
    242242    {
    243243        gLog << err << "Sorry, you don't have write permission for '" << kNameout << "'." << endl;
    244         return -1;
     244        return 2;
    245245    }
    246246
     
    248248    {
    249249        gLog << err << "Sorry, file '" << kNameout << "' already existing." << endl;
    250         return -1;
     250        return 2;
    251251    }
    252252
     
    413413    {
    414414        gLog << err << "ERROR: Merging and preprocessing failed!" << endl;
    415         return -1;
     415        return 2;
    416416    }
    417417
  • trunk/MagicSoft/Mars/mhflux/MAlphaFitter.cc

    r6874 r6888  
    501501    case kSignificanceChi2:
    502502        return -GetSignificance()/GetChiSqSignal();
     503    case kSignificanceExcess:
     504        return -GetSignificance()*GetEventsExcess();
     505    case kExcess:
     506        return -GetEventsExcess();
    503507    }
    504508    return 0;
     
    557561        if (txt==(TString)"significancechi2")
    558562            fStrategy = kSignificanceChi2;
     563        if (txt==(TString)"significanceexcess")
     564            fStrategy = kSignificanceExcess;
     565        if (txt==(TString)"excess")
     566            fStrategy = kExcess;
    559567        rc = kTRUE;
    560568    }
  • trunk/MagicSoft/Mars/mhflux/MAlphaFitter.h

    r6874 r6888  
    3030    enum Strategy_t {
    3131        kSignificance,
    32         kSignificanceChi2
     32        kSignificanceChi2,
     33        kSignificanceExcess,
     34        kExcess
    3335    };
    3436private:
  • trunk/MagicSoft/Mars/readdaq.cc

    r4738 r6888  
    7070    {
    7171        Usage();
    72         return -1;
     72        return 2;
    7373    }
    7474
     
    9090    {
    9191        Usage();
    92         return -1;
     92        return 2;
    9393    }
    9494
     
    112112    {
    113113        gLog << err << "Sorry, the input file '" << kNamein << "' doesn't exist." << endl;
    114         return -1;
     114        return 2;
    115115    }
    116116
     
    192192    {
    193193        gLog << err << "ERROR: Reading DAQ file failed!" << endl;
    194         return -1;
     194        return 2;
    195195    }
    196196
  • trunk/MagicSoft/Mars/readraw.cc

    r4738 r6888  
    8181    {
    8282        Usage();
    83         return -1;
     83        return 2;
    8484    }
    8585
     
    123123    {
    124124        gLog << err << "Sorry, the input file '" << kNamein << "' doesn't exist." << endl;
    125         return -1;
     125        return 2;
    126126    }
    127127
     
    157157    {
    158158        gLog << err << "Tree 'Events' not found in file... exit!" << endl;
    159         return -1;
     159        return 2;
    160160    }
    161161
  • trunk/MagicSoft/Mars/showlog.cc

    r6253 r6888  
    5757    {
    5858        Usage();
    59         return -1;
     59        return 2;
    6060    }
    6161
     
    7777    {
    7878        Usage();
    79         return -1;
     79        return 2;
    8080    }
    8181
     
    8585    {
    8686        gLog << "Cannot open file " << arg.GetArgumentStr(0) << ": " << strerror(errno) << endl;
    87         return -1;
     87        return 2;
    8888    }
    8989
  • trunk/MagicSoft/Mars/showplot.cc

    r6253 r6888  
    6868    {
    6969        Usage();
    70         return -1;
     70        return 2;
    7171    }
    7272
     
    9393    {
    9494        Usage();
    95         return -1;
     95        return 2;
    9696    }
    9797
  • trunk/MagicSoft/Mars/sinope.cc

    r6820 r6888  
    262262    {
    263263        Usage();
    264         return -1;
     264        return 2;
    265265    }
    266266
     
    293293        arg.Print("options");
    294294        gLog << endl;
    295         return -1;
     295        return 2;
    296296    }
    297297
     
    300300        gLog << warn << "ERROR - No '--run=' option given... required." << endl;
    301301        gLog << endl;
    302         return -1;
     302        return 2;
    303303    }
    304304    if (kDate.IsNull())
     
    306306        gLog << warn << "ERROR - No '--date=' option given... required." << endl;
    307307        gLog << endl;
    308         return -1;
     308        return 2;
    309309    }
    310310
     
    315315    {
    316316        Usage();
    317         return -1;
     317        return 2;
    318318    }
    319319
     
    337337    {
    338338        gLog << err << "Sequence invalid!" << endl << endl;
    339         return -1;
     339        return 2;
    340340    }
    341341
     
    360360        {
    361361            gLog << err << "Sorry, file '" << file << "' exists... use -f option.." << endl;
    362             return -1;
     362            return 2;
    363363        }
    364364        file = Form("%stxt", kOutpath.Data());
     
    366366        {
    367367            gLog << err << "Sorry, file '" << file << "' exists... use -f option.." << endl;
    368             return -1;
     368            return 2;
    369369        }
    370370    }
  • trunk/MagicSoft/Mars/star.cc

    r6553 r6888  
    103103    {
    104104        Usage();
    105         return -1;
     105        return 2;
    106106    }
    107107
     
    131131        arg.Print("options");
    132132        gLog << endl;
    133         return -1;
     133        return 2;
    134134    }
    135135
     
    140140    {
    141141        Usage();
    142         return -1;
     142        return 2;
    143143    }
    144144
     
    151151    {
    152152        gLog << err << "Sorry, sequence file '" << kSequence << "' doesn't exist." << endl;
    153         return -1;
     153        return 2;
    154154    }
    155155
     
    157157    {
    158158        gLog << err << "Sorry, config file '" << kConfig << "' doesn't exist." << endl;
    159         return -1;
     159        return 2;
    160160    }
    161161
     
    174174    {
    175175        gLog << err << "Sequence read but not valid!" << endl << endl;
    176         return -1;
     176        return 2;
    177177    }
    178178
     
    228228        {
    229229            gLog << err << "Calculation of image parameters failed." << endl << endl;
    230             return -1;
     230            return 2;
    231231        }
    232232
Note: See TracChangeset for help on using the changeset viewer.