Changeset 6903 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
03/29/05 18:37:44 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r6902 r6903  
    128128   * mjobs/Makefile, mjobs/JobsLinkDef.h:
    129129     - removed MJExtractSignal
     130
     131   * mfbase/MF.cc:
     132     - fixed a problem with double-inversion in ReadEnv
     133
     134   * mpointing/MSrcPosCalc.cc:
     135     - removed an output line which showed only an empty container
    130136
    131137
  • trunk/MagicSoft/Mars/NEWS

    r6892 r6903  
    44
    55   - Fix bug on the arrival time reconstruction when using Digital
    6      Filter (in some marginal cases times were reconstructed shifted by one
    7      or two slices)
     6     Filter (in some marginal cases (10%) times were reconstructed shifted
     7     by 0.2 slices)
    88
    99   - all executables now return 2 where in previous versions -1 has
  • trunk/MagicSoft/Mars/mfbase/MF.cc

    r6892 r6903  
    540540    }
    541541
     542    if (fF->ReadEnv(env, prefix, print)==kERROR)
     543        return kERROR;
     544
     545    // This is a workaround, because MFilter::ReadEnv and fF->ReadEnv
     546    // might check for "Inverted" in this case both gets inverted
     547    // and double-inversion is no inversion
     548    if (IsEnvDefined(env, prefix, "Inverted", print))
     549        if (GetEnvValue(env, prefix, "Inverted", print)==kTRUE)
     550            fF->SetInverted(kFALSE);
     551
    542552    return kTRUE;
    543553}
  • trunk/MagicSoft/Mars/mpointing/MSrcPosCalc.cc

    r6874 r6903  
    197197
    198198    *fLog << inf;
    199     *fLog << "Pointing Position: " << GetRaDec(*fPointPos)  << endl;
    200     *fLog << "Source   Position: " << GetRaDec(*fSourcePos) << endl;
     199    //*fLog << "Pointing Position: " << GetRaDec(*fPointPos)  << endl;
     200    *fLog << "Source Position: " << GetRaDec(*fSourcePos) << endl;
    201201
    202202    return kTRUE;
Note: See TracChangeset for help on using the changeset viewer.