Ignore:
Timestamp:
09/08/04 18:01:21 (20 years ago)
Author:
rwagner
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Cosy/main/MStarguider.cc

    r4865 r4888  
    658658                return kTRUE;
    659659
    660 
    661660            case IDM_kStargHistograms:
    662661                Toggle(fDisplay, IDM_kStargHistograms);
     
    942941    TH2F h("Hist", "dX/dY", 49, -768/2-8, 768/2+8, 37, -576/2-8, 576/2+8); // 3
    943942
    944     TH1F hmag("HistMag", "Mag", 19, 0, 100);
    945     for (int i=0; i<mag.GetSize(); i++)
    946         hmag.Fill(mag[i]);
     943//     TH1F hmag("HistMag", "Mag", 19, 0, 100);
     944//     for (int i=0; i<mag.GetSize(); i++)
     945//         hmag.Fill(mag[i]);
    947946   
    948947    //
     
    10401039    stars.Sort(); // Sort by magnitude
    10411040
     1041#ifdef EXPERT
    10421042    TString str = "data/tracking_";
    10431043    str += fSao->GetMjd();
     
    10451045
    10461046    ofstream fout(str);
     1047#endif
    10471048
    10481049    TArrayF x, y, mag;
     
    10711072            y.AddAt(dpos.Y(), idx);
    10721073            mag.AddAt(spot->GetMag()/star->GetMag(), idx);
    1073 
     1074#ifdef EXPERT
    10741075            if (fout) {
    10751076                fout << spot->GetX() << " "
     
    10811082                fout << x[idx] << " " << y[idx] << " " << mag[idx] << endl;
    10821083            }
     1084#endif
    10831085        }
    10841086    } 
     
    12921294    if (!fWritePictures->IsEntryEnabled(IDM_kStart) &&
    12931295        (!(n%fWrtRate) || fWriteType->IsEntryChecked(IDM_kOnce)))
    1294     {
     1296    {     
     1297 
    12951298        if (fFileType->IsEntryChecked(IDM_kPNG))
    1296             Writer::Png("pix/file", img, tm);
     1299            Writer::Png("pix/file", img, tm, fCRaDec->GetCoordinates());
    12971300       
    12981301        if (fFileType->IsEntryChecked(IDM_kPPM))
    1299             Writer::Ppm("pix/file", img, tm);
     1302            Writer::Ppm("pix/file", img, tm, fCRaDec->GetCoordinates());
    13001303       
    13011304        if (fWriteType->IsEntryChecked(IDM_kOnce))
Note: See TracChangeset for help on using the changeset viewer.