Changeset 4000 for trunk


Ignore:
Timestamp:
05/07/04 10:45:33 (21 years ago)
Author:
gaug
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/Changelog

    r3993 r4000  
    3131     - updated to the latest version of MPedCalcPedRun
    3232
     33   * macros/bootcampstandardanalysis.C
     34     - updated to the latest changes in the ArrivalTime Extraction
    3335
    3436 2004/05/05: Markus Gaug
  • trunk/MagicSoft/Mars/macros/bootcampstandardanalysis.C

    r3862 r4000  
    6060{
    6161
     62  //
     63  // Choose the signal Extractor:
     64  //
    6265  MExtractSlidingWindow extractor;
     66  //  MExtractFixedWindowPeakSearch extractor;
     67  //  MExtractFixedWindow    extractor;   
     68
     69  //
     70  // Set Ranges or Windows
     71  //
     72  extractor.SetRange(5,14,5,14);
     73  //  extractor.SetWindows(8,8);
     74
     75  //
     76  // Choose the arrival time Extractor:
     77  //
     78  MExtractTimeFastSpline       timeext;
     79  //  MExtractTimeHighestIntegral timeext;
     80  //  MExtractTimeSpline          timeext;
     81  //
     82  // Set Ranges or Windows
     83  //
     84  timeext.SetRange(3,12,6,14);
     85
    6386
    6487  MRunIter pruns;
     
    105128    }
    106129  pedloop.SetBadPixels(badcam);
     130  pedloop.SetExtractor(&extractor);
    107131
    108132  if (!pedloop.Process())
     
    122146  calloop.SetExtractor(&extractor);
    123147  //
     148  // Apply rel. time calibration:
     149  //
     150  calloop.SetRelTimeCalibration();
     151  calloop.SetTimeExtractor(&timeext);
     152  //
    124153  // Set the corr. cams:
    125154  //
     
    131160  if (usedisplay)
    132161      calloop.SetDisplay(display);
    133  
    134   //
    135   // Apply rel. time calibration:
    136   //
    137   calloop.SetRelTimeCalibration();
    138   //
    139   // Use as arrival time extractor MArrivalTimeCalc2:
    140   //
    141   calloop.SetArrivalTimeLevel(2);
    142162 
    143163  //
  • trunk/MagicSoft/Mars/mpedestal/MPedCalcPedRun.cc

    r3995 r4000  
    520520  fPedestals->SetReadyToSave();
    521521  fNumSamplesTot += fWindowSizeHiGain + fWindowSizeLoGain;
    522  
     522
    523523  return kTRUE;
    524524}
Note: See TracChangeset for help on using the changeset viewer.