Changeset 7834


Ignore:
Timestamp:
08/02/06 10:35:12 (18 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r7832 r7834  
    3737       have been determined for the pulse positions
    3838       (50phe for pulse, hi-gain and 320phe for lo-gain)
     39
     40   * datacenter/macros/fillsignal.C:
     41     - changed to support new information about pulse positions
    3942
    4043
  • trunk/MagicSoft/Mars/datacenter/macros/fillsignal.C

    r7833 r7834  
    201201    rmspul  = TMath::Nint(rmspul *100)/100.;
    202202
    203 
     203/*
    204204    Double_t meanhi  = TMath::Nint(pulhi->GetMean()*100.)/100.;
    205205    Double_t rmshi   = TMath::Nint(pulhi->GetRMS() *100.)/100.;
     
    207207    Double_t meanlo  = TMath::Nint(pullo->GetMean()*100.)/100.;
    208208    Double_t rmslo   = TMath::Nint(pullo->GetRMS() *100.)/100.;
    209 
     209 */
    210210    pullo->Add(pullo, pulhi, 1, -1);
    211211    pullo->ResetBit(MHCamera::kProfile);
     
    232232    TString meanextpulpos=Form("%6.2f", meanextpul);
    233233    TString rmsextpulpos =Form("%6.2f", rmsextpul);
    234 
     234   /*
    235235    TString meanpulhi    =Form("%6.2f", meanhi);
    236236    TString rmspulhi     =Form("%6.2f", rmshi);
     
    238238    TString meanpullo    =Form("%6.2f", meanlo);
    239239    TString rmspullo     =Form("%6.2f", rmslo);
    240 
     240    */
    241241    TString meanpuloff   =Form("%6.2f", meanoff);
    242242    TString rmspuloff    =Form("%6.2f", rmsoff);
     
    260260    cout << "  Mean calibrated PulsePos " << meanpulpos    << " +- " << rmspulpos    << endl;
    261261    cout << "  Mean extracted  PulsePos " << meanextpulpos << " +- " << rmsextpulpos << endl;
    262     cout << "  Mean ext.HiGain PulsePos " << meanpulhi     << " +- " << rmspulhi     << endl;
    263     cout << "  Mean ext.LoGain PulsePos " << meanpullo     << " +- " << rmspullo     << endl;
     262//    cout << "  Mean ext.HiGain PulsePos " << meanpulhi     << " +- " << rmspulhi     << endl;
     263//    cout << "  Mean ext.LoGain PulsePos " << meanpullo     << " +- " << rmspullo     << endl;
    264264    cout << "  Lo-Hi gain offset:       " << meannpuloff   << " +- " << rmspuloff    << endl;
    265265    cout << endl;
     
    274274                         " fPulsePosMean=%s,      fPulsePosRms=%s,     "
    275275                         " fPulsePosCheckMean=%s, fPulsePosCheckRms=%s "
    276                          " fPulsePosHiMean=%s,    fPulsePosHiRms=%s,   "
    277                          " fPulsePosLoMean=%s,    fPulsePosLoRms=%s,   "
     276                         //" fPulsePosHiMean=%s,    fPulsePosHiRms=%s,   "
     277                         //" fPulsePosLoMean=%s,    fPulsePosLoRms=%s,   "
    278278                         " fPulsePosOffMean=%s,   fPulsePosOffRms=%s,  "
    279279                         " WHERE fSequenceFirst='%d' ",
     
    282282                         meanpulpos.Data(),    rmspulpos.Data(),
    283283                         meanextpulpos.Data(), rmsextpulpos.Data(),
    284                          meanpulhi.Data(),     rmspulhi.Data(),
    285                          meanpullo.Data(),     rmspullo.Data(),
     284                         //meanpulhi.Data(),     rmspulhi.Data(),
     285                         //meanpullo.Data(),     rmspullo.Data(),
    286286                         meanpuloff.Data(),    rmspuloff.Data(),
    287287                         seq);
Note: See TracChangeset for help on using the changeset viewer.