Changeset 12938 for trunk/Mars


Ignore:
Timestamp:
02/24/12 09:59:39 (13 years ago)
Author:
tbretz
Message:
Added missing intialization of fArrivalTime
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/msignal/MSignalPix.cc

    r7876 r12938  
    8080MSignalPix::MSignalPix(Float_t phot, Float_t errphot) :
    8181    fIsCore(kFALSE), fRing(1), fIdxIsland(-1),
    82     fPhot(phot), fErrPhot(errphot)
     82    fPhot(phot), fErrPhot(errphot), fArrivalTime(-1)
    8383{
    8484    MMath::ReducePrecision(fPhot);
     
    8888void MSignalPix::Clear(Option_t *o)
    8989{
    90     fIsCore     = kFALSE;
    91     fRing       =  1;
    92     fIdxIsland  = -1;
    93     fPhot       =  0;
    94     fErrPhot    =  0;
     90    fIsCore      = kFALSE;
     91    fRing        =  1;
     92    fIdxIsland   = -1;
     93    fPhot        =  0;
     94    fErrPhot     =  0;
     95    fArrivalTime = -1;
    9596}
    9697
Note: See TracChangeset for help on using the changeset viewer.