Ignore:
Timestamp:
04/08/13 13:07:15 (12 years ago)
Author:
lyard
Message:
fixed wrong run type display, fixed calibration loading
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Mars/mcore/DrsCalib.h

    r15013 r15278  
    10371037        fNumTm     = file.HasKey("NTM") ? file.GetUInt("NTM") : 0;
    10381038
    1039         fDateObs   = file.GetStr("DATE-OBS");
    1040         fDateEnd   = file.GetStr("DATE-END");
    1041 
    1042         fDateRunBeg[0]= file.GetStr("RUN0-BEG");
    1043         fDateRunBeg[1]= file.GetStr("RUN1-BEG");
    1044         fDateRunBeg[2]= file.GetStr("RUN2-BEG");
    1045         fDateRunEnd[0]= file.GetStr("RUN0-END");
    1046         fDateRunEnd[1]= file.GetStr("RUN1-END");
    1047         fDateRunEnd[2]= file.GetStr("RUN2-END");
     1039        if (file.HasKey("DATE-OBS"))
     1040            fDateObs   = file.GetStr("DATE-OBS");
     1041        if (file.HasKey("DATE-END"))
     1042            fDateEnd   = file.GetStr("DATE-END");
     1043
     1044        if (file.HasKey("RUN0-BEG"))
     1045            fDateRunBeg[0]= file.GetStr("RUN0-BEG");
     1046        if (file.HasKey("RUN1-BEG"))
     1047            fDateRunBeg[1]= file.GetStr("RUN1-BEG");
     1048        if (file.HasKey("RUN2-BEG"))
     1049            fDateRunBeg[2]= file.GetStr("RUN2-BEG");
     1050        if (file.HasKey("RUN0-END"))
     1051            fDateRunEnd[0]= file.GetStr("RUN0-END");
     1052        if (file.HasKey("RUN1-END"))
     1053            fDateRunEnd[1]= file.GetStr("RUN1-END");
     1054        if (file.HasKey("RUN2-END"))
     1055            fDateRunEnd[2]= file.GetStr("RUN2-END");
    10481056/*
    10491057        fDAC[0]    = file.GetUInt("DAC_A");
Note: See TracChangeset for help on using the changeset viewer.