Changeset 7364 for trunk/MagicSoft/Mars


Ignore:
Timestamp:
09/22/05 14:06:38 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mreport/MReportStarguider.cc

    r7202 r7364  
    129129    str = str.Strip(TString::kBoth);
    130130
     131    if (ver >= 200508290)
     132    {
     133        // For the momment this are only placeholders....
     134        Float_t dx, dy;
     135        n=sscanf(str.Data(), "%f %f %n", &dx, &dy, &len);
     136        if (n!=2)
     137        {
     138            *fLog << warn << "WARNING - Not enough arguments." << endl;
     139            return kCONTINUE;
     140        }
     141
     142        str.Remove(0, len);
     143        str = str.Strip(TString::kBoth);
     144    }
     145
    131146    return str.IsNull() ? kTRUE : kCONTINUE;
     147
    132148}
    133149
  • trunk/MagicSoft/Mars/msignal/MSignalCam.cc

    r7349 r7364  
    599599{
    600600    MSignalPix *pix = GetPixById(idx);
    601 
    602     if ((!pix || !pix->IsPixelUsed()) && (type<6 || type==8))
     601    if (!pix)
     602        return kFALSE;
     603
     604    // Used inlcudes status unampped
     605    if (!pix->IsPixelUsed() && (type<6 || type==8))
    603606        return kFALSE;
    604607
     
    625628        break;
    626629    case 6:
     630        if (pix->IsPixelUnmapped())
     631            return kFALSE;
    627632        val = pix->GetArrivalTime();
    628633        break;
    629634    case 7:
    630         if (pix->GetNumPhotons()*ratio<15) // maybe 15 as static data member?
     635        if (pix->IsPixelUnmapped() || pix->GetNumPhotons()*ratio<15) // maybe 15 as static data member?
    631636            return kFALSE;
    632637        val = pix->GetArrivalTime();
Note: See TracChangeset for help on using the changeset viewer.