Ignore:
Timestamp:
03/01/09 21:54:27 (16 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mmovie/MMovieWrite.cc

    r9303 r9369  
    290290}
    291291
     292#ifdef USE_TIMING
    292293TStopwatch clockT, clock1, clock2, clock3;
     294#endif
    293295
    294296// --------------------------------------------------------------------------
     
    304306    }
    305307
     308#ifdef USE_TIMING
    306309    *fLog << all << endl;
    307310    *fLog << "Snap: " << flush;
     
    314317    clockT.Print();
    315318    *fLog << endl;
     319#endif
    316320
    317321    return kTRUE;
     
    338342
    339343    double r[6] = {1.0, 1.0,  1.0, 0.85,  0.1,     0.0 };
    340     double g[6] = {1.0, 1.0,  1.0, 0.0,   0.1,     0.0 };
    341     double b[6] = {0.9, 0.55, 0.4, 0.0,   0.7,     0.1 };
     344    double g[6] = {1.0, 1.0,  1.0, 0.15,  0.1,     0.0 };
     345    double b[6] = {0.9, 0.55, 0.4, 0.15,  0.7,     0.1 };
    342346
    343347    TArrayI col(99);
     
    481485    UInt_t *argb = img.GetArgbArray();
    482486    for (UInt_t *ptr=argb; ptr<argb+img.GetWidth()*img.GetHeight(); ptr++)
    483         fwrite(ptr, 1, 3, fPipe);
     487        if (fwrite(ptr, 3, 1, fPipe)!=1)
     488            break;
    484489
    485490    return CheckPipe();
     
    493498Bool_t MMovieWrite::WriteImage(TASImage &img, TVirtualPad &pad)
    494499{
     500#ifdef USE_TIMING
    495501    clock1.Start(kFALSE);
    496502    UpdateImage(img, pad);
     
    502508
    503509    return rc;
     510#else
     511    UpdateImage(img, pad);
     512    return WriteImage(img);
     513#endif
    504514}
    505515
     
    524534            continue;
    525535
    526         const MGeomPix &gpix = (*fCam)[i];
     536        const MGeom &gpix = (*fCam)[i];
    527537
    528538        Int_t    num = 0;
     
    572582            continue;
    573583
    574         const MGeomPix &gpix = (*fCam)[i];
     584        const MGeom &gpix = (*fCam)[i];
    575585
    576586        //
     
    671681Int_t MMovieWrite::Process()
    672682{
     683#ifdef USE_TIMING
    673684    clockT.Start(kFALSE);
    674685
    675686    clock3.Start(kFALSE);
    676 
     687#endif
    677688    // ---------------- Prepare display ------------------
    678689
     
    802813    // ---------------- Show data ------------------
    803814    gStyle->SetOptStat(1000000001);
    804 /*                     
     815/*
    805816    p0.Modified();
    806817    p1.Modified();
     
    815826
    816827    // ---------------- Show data ------------------
    817 
     828#ifdef USE_TIMING
    818829    clock3.Stop();
     830#endif
    819831
    820832    // Switch off automatical adding to directory (SetName would do)
     
    827839    TH1::AddDirectory(add);
    828840
     841#ifdef USE_TIMING
    829842    clockT.Stop();
     843#endif
    830844
    831845    gROOT->SetBatch(batch);
Note: See TracChangeset for help on using the changeset viewer.