Ignore:
Timestamp:
11/03/03 18:08:26 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mraw/MRawEvtHeader.cc

    r2386 r2461  
    125125    Clear();
    126126}
    127 
    128127
    129128// --------------------------------------------------------------------------
     
    216215        }
    217216    }
    218     *fLog << endl;
     217    if (fPixLoGainOn->GetSize())
     218        *fLog << endl;
    219219}
    220220
     
    226226{
    227227    fDAQEvtNumber = uiN;
    228     fTrigPattern[0] = (UInt_t) (ulTP/4294967296.0) ;
    229     fTrigPattern[1] = (UInt_t) (ulTP-fTrigPattern[0]*4294967296.0);
     228    fTrigPattern[0] = (UInt_t)(ulTP/4294967296.0) ;
     229    fTrigPattern[1] = (UInt_t)(ulTP-fTrigPattern[0]*4294967296.0);
    230230}
    231231
     
    239239    fin.read((char*)&fDAQEvtNumber, 4);  // Total=4
    240240
    241     UInt_t fAbsTime[2];
    242     fin.read((char*)fAbsTime,       8);  // Total=12
     241    UInt_t abstime[2];
     242    fin.read((char*)abstime,        8);  // Total=12
    243243
    244244    //
    245245    // store the time of the event in the corresponding container
    246246    //
    247     const Double_t mhz = 9.375;                          // [1e6 ticks/s]
    248     const Double_t t   = (Double_t)fAbsTime[0]/mhz;      // [ns]
     247    const Double_t mhz = 9.375;                        // [1e6 ticks/s]
     248    const Double_t t   = (Double_t)abstime[0]/mhz;     // [ns]
    249249    const UShort_t ns  = (UShort_t)fmod(t*1e-3, 1e9);
    250250    const Byte_t s     = (Byte_t)fmod(t/1e12, 60);
    251251    const Byte_t m     = (Byte_t)fmod(t/60e12, 60);
    252252    const Byte_t h     = (Byte_t)(t/3600e12);
    253 
    254253    fTime->SetTime(h, m, s, ns);
    255     fTime->SetTime(fAbsTime[0], fAbsTime[1]);
    256254
    257255    Byte_t dummy[4];
    258 
    259256    fin.read((char*)&fNumTrigLvl1,  4);  // Total=16
    260257    fin.read((char*)&fNumTrigLvl2,  4);  // Total=20
Note: See TracChangeset for help on using the changeset viewer.